Computer Science, asked by SAHIL1832, 1 year ago

Difference between write only mode and append python

Answers

Answered by pornimv
2
WRITE MODE: This Mode Opens file for writing. If file does not exist, it creates a new file.If file exists it truncates the file.
APPEND MODE: Open file in append mode. 
If file does not exist, it creates a new file.
Similar questions