Difference between write only mode and append python
Answers
Answered by
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.
APPEND MODE: Open file in append mode.
If file does not exist, it creates a new file.
Similar questions