In this tutorial you will learn:
File Writing Modes
In Python we have the ‘w,’ ‘a’ and ‘+’ for writing to a file. For appending data to an already written file we use ‘a’
Mode | Description |
w | For writing or creating a file. |
a | For appending to a file. |
+ | For opening a file for reading or writing. |
File Writing in Python
We can write to new and existing files in Python. For writing we need to perform three main tasks one is to open the file, next one is to write the file and
Add new comment