The coding practice is an illustration of file manipulation
File manipulations are program statements used to read, write and append to files
The program written in Python, where comments are used to explain each line is as follows
# This opens the file in read mode
text = open("myFile.txt", "r")
# This reads each line of the file
eachLine = text.readLine()
#This iterates through the lines
while(eachLine):
# This prints the text on each line
print(eachLine)
# This reads the next line
eachLine = text.readLine()
#This closes the file
text.close()
Read more about file manipulation at:
https://brainly.com/question/16397886