Printing the contents of a file displays each line in the file.
Solution for How to print the contents of a file in Python : You can use open() to print the contents of a file Call open(file) to open the file named file. Call file.read() to get a string containing each line in the previous result file.