File Object methods (Python) Flashcards
What does file = open(‘file name.txt’, access_mode) mean
Opens the file if it exists otherwise creates the file. Needs the given access_mode (‘a’, ‘r’, ‘w’)
What does file.close() do
Closes the file
What does print(file.read(n)) do
Reads the n characters of the file and is returned as a string. If n is not specified then returns all characters
What does print(file.readline(n)) do
Read n characters from current line in file and return them as a string. If n is not specified then returns to the end of the line
What does line = file.readlines() mean
Reads all lines in a file and returns them as elements
What does file.write(written_string) mean
Writes written_string into the file
What does file.writelines([a,b,c,d])
Writes list of a, b, c, d as one line in the file. For multiple line use \n