# How to read, and print to the screen a file in python! f = open('fileName', 'r') print(f.read()) f.close() # Where "fileName" is obviously the name of your file that you want to read.