u7-script-file-operations Flashcards
Question;Answer
What is the difference between these two file opening modes?\nwith open(“file.txt”
“w”) as f\nwith open(“file.txt”
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().”
file=wf)\nBoth achieve the same goal but print() automatically adds a newline
What does this code do?\nglob.glob(os.path.join(“**”
“*.txt”)
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
making it more efficient than os.listdir() which just returns names
How do you implement recursive file search without using glob?\ndef search_files(root
ext
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
if row=[1
How do you write a matrix to a CSV file with a header?\ndef write_matrix(matrix
path