# read a file and print it out

menuFile = open("menu.txt", "r")
# get file; tell Python we want to read
# file should be in same folder as this program

while True:  # use break to end this loop
    line = menuFile.readline()
    # line is a string; contains a line of the file
    if line == "":
        break # empty string means end of file
    line = line.strip()  # removes newline from end 
    print(line)
    
menuFile.close() # close file when done
