File Object methods (Python) Flashcards

1
Q

What does file = open(‘file name.txt’, access_mode) mean

A

Opens the file if it exists otherwise creates the file. Needs the given access_mode (‘a’, ‘r’, ‘w’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does file.close() do

A

Closes the file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does print(file.read(n)) do

A

Reads the n characters of the file and is returned as a string. If n is not specified then returns all characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does print(file.readline(n)) do

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does line = file.readlines() mean

A

Reads all lines in a file and returns them as elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does file.write(written_string) mean

A

Writes written_string into the file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does file.writelines([a,b,c,d])

A

Writes list of a, b, c, d as one line in the file. For multiple line use \n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly