Commit 0e822c4a by BellCodeEditor

auto save

parent dc70412a
Showing with 28 additions and 0 deletions
def new_input ():
total = []
while True:
unit= input("请输入:")
if unit== 'q':
return(total)
break
else:
try :
int(unit)
except :
print("输入整数")
else:
print("-"*30)
total.append(int(unit))
print(total)
def money(total):
doubt=0
for i in total:
doubt=doubt+i
return doubt
print(money(new_input()))
\ 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