In file handling, the key function for working files in Python is the ______ function.
open ()
File handling has several function for ______ , ______ , ______ and ______ files
creating
reading
updating
deleting
Syntax:
File object= open(“filename”,”mod”)
______ : attribute of a file object tells you which mode a file was opened in.
mode
Syntax:
File object= open(“filename”,”mod”)
______ : gives name of the file that the file object has opened. And you have to specify the exact location of your file.
filename