Commit c807bbad by BellCodeEditor

auto save

parent 5ec53ebb
Showing with 18 additions and 0 deletions
a=open(r'c:\Users\86152\Desktop','r',encoding='utf-8')
b=a.readlines()
e=[]
for i in b:
data=i.split()
#print(data[0])
#print(data[1:])
sum=0
for c in data[1:]:
sum=sum+int(c)
d=data[0]+star(sum)+'\n'
e.append(d)
print(d)
a.close()
b=open(r'c:\Users\86152\Desktop\nihao.txt','w',encoding='utf-8')
b.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