with open(r'c:\Users\GT\Documents\lesson13-1\sales_list.txt','r',encoding='utf-8') as file: a=file.readlines() for i in a: p=i.split()
print(p[1:])