8
Question Which of the following statement is not correct ?
- We can write content into a text file opened using 'w' mode.
- We can write content into a text file opened using 'w+' mode.
- We can write content into a text file opened using 'r' mode.
- We can write content into a text file opened using 'r+' mode.
We can write content into a text file opened using 'r' mode
Reason — We can only read content into a text file opened using 'r' mode.