Commit 01b00414 by BellCodeEditor

save project

parent 7f583f67
Showing with 5 additions and 2 deletions
...@@ -2,4 +2,8 @@ with open(r"c:\Users\Administrator\Desktop\1232457890.txt","r",encoding="utf-8") ...@@ -2,4 +2,8 @@ with open(r"c:\Users\Administrator\Desktop\1232457890.txt","r",encoding="utf-8")
b=a.readlines() b=a.readlines()
for i in b: for i in b:
c=i.split() c=i.split()
print(c[1:]) #print(c[1:])
\ No newline at end of file sum=0
for d in c[1:]:
sum=sum+int(d)
print(sum)
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