What Is The Correct Syntax Of Open Function #1034
What is the correct syntax of open() function?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Files - Python Files - Quiz No.3.
What is the correct syntax of open() function?
file = open(file_name [, access_mode][, buffering])
file object = open(file_name [, access_mode][, buffering])
file object = open(file_name)
none of the mentioned