Question from the Python - Fundamentals test

Which of these statements are correct ?

Archived

The python syntax to open a file is open(filename, mode). Which of these statements are correct ?

Author: ThéoStatus: Archived(New question!)Question passed 757 times
-1
Community Evaluations
developer avatar
Ambiguous
Adem
30/01/2024
The 'r' mode does not allow writing, but the 'r+' does. So all the answers here are incorrect.