Advertisements
Advertisements
Question
Differentiate between 'w' and 'a' file modes in Python.
Distinguish Between
Solution
Here are the differences between 'w' and 'a' modes:
- 'w' or write mode. This opens the file for writing. If the file already exists, its contents are erased.
- 'a' mode or add mode. It opens the file to add extra data at the end while keeping previous information.
shaalaa.com
Is there an error in this question or solution?