demo_ref_open.py:
f = open("demofile.txt", "r") print(f.read())
C:\Users\My Name>python demo_open.py
Hello! Welcome to demofile.txt
This file is for testing purposes.
Good Luck!