python file designators code example
Example: file python
# File Io basics
'''
r - open file for reading (defualt mode)
w - open file for writing
x - creates file if it not exist
a - add more content to a file
t - text mode (as a string )
b - binary mode
+ - read and write (mostly used for updating file)
'''