

# Python at GlobalSino EM:
# https://www.globalsino.com/EM/page945.html

# Code function: read a .txt file in Python


EM_file = open("C:\GlobalSino\images\TestImages\ImagesOnly\Program.txt", 'r')

# Create a file with such as name if there is not a such file, or add a
# line in the file if there is a file with such a file name.
FileData3 = EM_file.readline()
print("\"" + FileData3 + "\"")

EM_file.close()
