How to read text file into a list or array with Python?
Answers
Answered by
0
Read Only ('r') : Open text file for reading. ...
Read and Write ('r+') : Open the file for reading and writing. ...
Write Only ('w') : Open the file for writing. ...
Write and Read ('w+') : Open the file for reading and writing. ...
Append Only ('a') : Open the file for writing.
Answered by
0
Similar questions