diy.py 134 Bytes Edit 1 2 3 4 5 with open("sales_list.txt","r",encoding="utf_8") as file: f=file.readlines() for i in f: print(i) file.close()