In this example we will show how to close the file when you are finish with it in Python.
Source Code
f = open('myfile.txt', 'r', encoding='utf-8')
text = f.read()
print(text)
f.close()
Output:
Hello World!
Python is a programming language that lets you work more quickly and integrate your systems more effectively.
I love Python!