Computer Science, asked by shurithisaravanan, 10 months ago

Opening a file in append mode in Python:

Answers

Answered by priyanshuranjan1204
0

Access modes govern the type of operations possible in the opened file. It refers to how the file will be used once its opened. In order to append a new line your existing file, you need to open the file in append mode , by setting "a" or "ab" as the mode.

Similar questions