Commit 7eab7db6 by BellCodeEditor

auto save

parent 5ec53ebb
Showing with 13 additions and 0 deletions
with open(r'c:\Users\ThinkPad\Documents\lesson13-1\sales_list.txt','r',encoding='utf-8') as file1:
a=file1.readlines()
print(type(a[3:5]))
for i in a:
c=i.split()
#print(c[0])
#print(c[1:])
d=0
for b in c[1:]:
d+=int(b)
g=c[0]+' '+str(d)
print(g)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment