0
What is meant by append?
append mode in file
1 Answer
+ 2
It means that you will add data to the end of the file. Every time you write something in your file it will be added at the end without erasing the previously written content.
If you open the file in write mode, you'll rewrite it every single time you use it.