The program is an illustration of file manipulations
<h3>What are file manipulations?</h3>
File manipulations are program statements that are used to write & append to file, and also read from the file
<h3>The actual program in Python</h3>
Assume the file name is top10.txt, the program in Python where comments are used to explain each line is as follows:
#This opens the file
a_file = open("top10.txt")
#This reads the file contents
file_contents = a_file.read()
#This prints the contents
print(file_contents)
Read more about file manipulations at:
brainly.com/question/15683939