Computer Science
Name the functions used to read and write in plain text files.
Python File Handling
3 Likes
Answer
The functions used to read in plain text files are as follows :
- read()
- readline()
- readlines()
The functions used to write in plain text files are as follows :
- write()
- writelines()
Answered By
2 Likes