Report Bug
Qus : What is the default mode for files in Python?
Qusपायथन में फ़ाइलों के लिए डिफ़ॉल्ट मोड क्या है?

A. Write
B. Read
C. Append
D. Read and Write Both


Solution
B. Read



Explanation
In Python, when you open a file using the open() function without specifying a mode, the default mode is 'r', which stands for "read." Therefore, if you don't explicitly provide a mode, Python assumes you want to open the file for reading.



Report Bug