Python’s built in function named open () tries to open a file and returns:
- an integer value identifying an opened file
- an error code (0 means success)
- a stream object
- always None
Answer(s): A
Reference:
https://www.programiz.com/python-programming/file-operation
Display Answer
Next Question