19
Question Which of the following statements are true regarding the opening modes of a file ?
- When you open a file for reading, if the file does not exist, an error occurs.
- When you open a file for writing, if the file does not exist, an error occurs.
- When you open a file for reading, if the file does not exist, the program will open an empty file.
- When you open a file for writing, if the file does not exist, a new file is created.
- When you open a file for writing, if the file exists, the existing file is overwritten with the new file.
When you open a file for reading, if the file does not exist, an error occurs.
When you open a file for writing, if the file does not exist, a new file is created.
When you open a file for writing, if the file exists, the existing file is overwritten with the new file.
Reason —
- When you open a file for writing, if the file does not exist, an error occurs — False.
When we open a file for writing ("w" mode) and the file does not exist, Python creates a new file. - When you open a file for reading, if the file does not exist, the program will open an empty file — False.
When we try to open a file for reading ("r" mode) that does not exist, Python raises a FileNotFoundError. It does not create an empty file.