Commit bcca94f4 by BellCodeEditor

save project

parent 98827d80
Showing with 6 additions and 3 deletions
with open(r"c:\Users\xmbc\Documents\lesson13-1\sales_list.txt","r",encoding="utf-8") as abc:
a = abc.readlines()
e = []
for i in a:
b = i.split()
#print(b[1:])
sum = 0
for c in b[1:]:
sum = sum+int(c)
d = b[0]+str(sum)
print(d)
\ No newline at end of file
d = b[0]+str(sum)+"\n"
e.append(d)
with open(r"c:\Users\xmbc\Desktop\123.txt","w",encoding="utf-8") as ab:
ab.writelines(e)
\ 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