#Let's read our file back in to a list def main(): carlist = [] #let's read to a file with open('/home/isqsdac/Desktop/workspace/l3_1/carlist.txt', 'r') as f: for line in f: #iterate over each line in the file. carlist.append(line) #Let's print this to console #wait....what went wrong??? for c in carlist: print(c) main()