Commit 938fc68e by BellCodeEditor

auto save

parent 0651e310
Showing with 17 additions and 1 deletions
def sum(oo):
all = 0
for i in oo:
all+=i
return all
a = [12,23,2,13,21,21,2,1]
b = [12,23,2,13,21,21,2]
all = 0
for i in a:
all+=i
print(all)
print(sum(a))
print(sum(b))
import tkinter
root=tkinter.Tk()
root.title("注册")
root.geometry("400x320+500+300")
root.mainloop()
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