Files IO basics

 # FILE IO BASICS

"""

    "r" open file for reading default
    "w" open a file for writing
    "x" creates file if not exists
    "a" Add more content to a file
    "t" text mode defautl
    "b" bindary mode
    "+" read and write both

"""
# Question of the day what is used to  read and write the doctype of the functoins

# ans: print(function'name'.__doc___)

Comments