1.4 Python File Handling Flashcards

1
Q

Named locations on disk to store related information

A

Files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Text files store the data in the form of characters
  2. Binary files store the entire data in the form of bytes
A

Types of Files in Python

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

We CANNOT use text files to store _________ as they do not contain characters

A

images

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

File open modes:

A
  1. w
  2. r
  3. a
  4. w+
  5. r+
  6. a+
  7. x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

To write data into file. If any data is already present in the file, it would be deleted and the present data will be stored

A

w

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

To read data from the file. The file pointer is positioned at the beginning of the file

A

r

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

To append data into the file. Appending means adding at the end of the file. If the file does not exist, it will create a new file for writing data

A

a

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

To write and read data of a file. The previous data in the file will be deleted

A

w+

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

To read and write data into a file. The previous data in the file will not be deleted. The file pointer is placed at the beginning of the file

A

r+

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

The append and read data of a file. The file pointed will be at the end of the file if the file exists. If the file does not exist, it creates a new file for reading and writing

A

a+

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

To open the file in exclusive creation mode. The file creation fails if the file already exists.

A

x

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

f = open(“myfile.txt”, “w”)
where f represents the _________ or file object

A

file handler

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

If the file is not closed, the memory utilized by the file is not _______, leading to problems like insufficient memory

A

freed

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

Used to store a character or a group of characters (string) into a file

A

write() or f.write(str)

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

This will read all the characters from the file ‘f’ and returns them into the string ‘str’

A

read() or f.read(str)

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

We can also used read() to read only a specified number of bytes from the file as

17
Q

Returns a list of the remaining lines of the entire file

A

readlines() or f.readline()

18
Q

To delete a file, you must import the OS module, and run its ______________ function

A

os.remove()

19
Q

checks if the file exists

A

os.path.exists()

20
Q

The _____________ module represents operating system dependent functionality

A

os (operating system)

21
Q

If we want to know the current working directory, we can use _______ method of ‘os’ module

A

getcwd() or ‘get current working directory’

22
Q

This method recursively creates the sub directories

A

mkdir() or ‘make directory’

23
Q

We can change our current working directory to another existing directory

24
Q

To remove a directory

25
Q

Recursively removes all the directories

A

removedirs()

26
Q

Give a new name to an existing directory