Commit 812e94ed by BellCodeEditor

auto save

parent 9094ad06
Showing with 30 additions and 14 deletions
def new_input():
list = []
while True:
b=input("输")
if b=="q":
break
try:
b=int(b)
except:
print("")
else:
list.append(b)
return list
def s(o):
zong=0
for i in o:
zong=zong+i
return zong
def new_input():
total =[]
while True:
unit=input("请;")
if unit=='q':
break
else:
try:
tuni = int(unit)
except:
print("还是")
else:
zong=zong+
......
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