Computer Science
Opening a file in append mode erases the previous data.
Python Data Handling
1 Like
Answer
False
Reason — Opening a file in append mode 'a' for text files or 'ab' for binary files does not erase the previous data. Instead, it allows data to be added to the end of the file without overwriting or erasing existing content.
Answered By
2 Likes