python read the file using with code example
Example 1: with open
with open('output.txt', 'w') as file: # Use file to refer to the file object
file.write('Hi there!')
Example 2: statement used to open a file in python
file_object = open("filename", "mode")