python program to read the contents of a file code example
Example: how to get the contents of a txt file in python
path= #path here
with open(path) as file
contents = file.read()
path= #path here
with open(path) as file
contents = file.read()