Answers for "how to read in python"

18

open text file in python

f=open("Diabetes.txt",'r')
f.read()
Posted by: Guest on April-25-2020
2

read function in python

Syntax: file.read(fd, n)

Parameter:
fd: A file descriptor representing the file to be read.
n: Optional. An integer value denoting the number of bytes to be read from the file associated with the given file descriptor fd.
   The number of bytes to return. Default -1, which means the whole file.

Return Type: This method returns a bytestring which represents the bytes read from the file associated with the file descriptor fd.
Posted by: Guest on May-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language