u7-script-file-operations Flashcards

1
Q

Question;Answer

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

What is the difference between these two file opening modes?\nwith open(“file.txt”

A

“w”) as f\nwith open(“file.txt”

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

How can you write to a file using both write() and print()?\nShow example code.;Two ways:\n1) wf.write(“This will create or overwrite the file!\n”)\n2) print(“Writing with print().”

A

file=wf)\nBoth achieve the same goal but print() automatically adds a newline

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

What does this code do?\nglob.glob(os.path.join(“**”

A

“*.txt”)

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

What’s the difference between os.listdir() and os.scandir()?;os.scandir() returns iterator of os.DirEntry objects which provide additional attributes like is_file() and is_dir() methods

A

making it more efficient than os.listdir() which just returns names

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

How do you implement recursive file search without using glob?\ndef search_files(root

A

ext

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

What does this code do?\ndelimiter.join(str(i) for i in row);It converts all items in ‘row’ to strings and joins them with the specified delimiter. For example

A

if row=[1

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

How do you write a matrix to a CSV file with a header?\ndef write_matrix(matrix

A

path

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