Vidyalelo
Python · Q78

Files Handling in Python

Programming · Python · question 78

Q78

What is the correct syntax of open() function?

A.
file = open(file_name [, access_mode][, buffering])
B.
file object = open(file_name [, access_mode][, buffering])
Answer
C.
file object = open(file_name)
D.
none of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board