Reading from a file
Qus. 1 : Which function returns the strings?
- readlines()
- read()
- Both of the above
- None of the above
- readall()
- read()
- readcharacter()
- readchar()
- Dictionary
- String
- Tuple
- List
- raw_input
- input
- eval
- accept
- f = open('data.txt'); f.read()
- f = open('data.txt','r'); f.read(n)
- myfile = open('data.txt'); f.readline()
- f= open('data.txt'); f.readlines()
- End of File
- End of Line
- End of Statement
- End of program
- Read mode
- Write mode
- Append mode
- Binary mode
- read()
- readline()
- readlines()
- load()
- End of List
- End of Line
- End of Loop
- End of Language
- f.read(5)
- f.read()=5
- f.readline(5)
- f.readlines(5)
- Read two words from file
- Read two line from file
- Read two character / two bytes
- count the number of '2' in file
Programs
python program to read the full content of specified txt file
python program to accept file name and data from user and write data on file
python program to count the number of lines in the file
python program to display the size of a file in byte
python program to display all the records in a file along with line number
python program to display only last line of a text file
python program that reads a text file and creates another file that is identical except that every sequence of consecutive blank spaces is replaced by single space
python program to create a function that would read contents from the sports.dat and creates a file named Atheletic.dat
python program to read csv file content line by line
Write Python code to display sentence starting with given character from abc.txt file
Python code to display digits from abc.txt file
python program to copy the one contents to another
python program to copy the all word which start with constant in another file
python program to add delete and display all record of binary file
python program to read data from csv file
Python program to write data on csv file
python program to write first n prime number in text file
python program to marge the content of target file into source file
python program to read txt file data from specified index to specified length
python program to delete the specified file from computer