Commit 5c0694a7 by BellCodeEditor

auto save

parent ea77d186
with open(r"c:\Users\64378\Documents\lesson13-1\sales_list.txt","r",encoding="utf-8") as feli:
a=feli.readlines()
#print(a)
feli_new=[]
for i in a:
data=i.split()
sum=0
for hhh in data[1:]:
sum += int(hhh)
www=data[0]+str(sum)+"\n"
feli_new.append(www)
with open(r"c:\Users\64378\Documents\lesson13-1\sales_list.txt","a",encoding="utf-8") as feli:
feli.writelines(feli_new)
\ No newline at end of file
a=["你好呀!\n","悟空\n","我在贝尔编程学python\n"]
with open(r"C:\Users\64378\Desktop\hhh.txt","a",encoding="utf-8") as feli:
feli.writelines(a)
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