Commit c2b1e99b by BellCodeEditor

auto save

parent 11398798
Showing with 14 additions and 21 deletions
import turtle
turtle
turtle.hideturtle()
t
\ No newline at end of file
total = []
def new_input(): def new_input():
total = []
while True: while True:
money=input('请输入(q退出):') try:
if money=='q': unit= input("请输入:")
if unit== 'q':
break break
else: else:
try: total.append(int(unit))
money=int(money)
except: except:
print("请重新输入一个数字") print("请输入整数")
else: new_input()
total.append(money) print(total)
finally: \ No newline at end of file
print("-"*30)
return total
def sum(money):
count=0
for i in money:
count=count+i
return count
price=new_input()
pay=sum(price)
print("你一共消费了"+str(pay)+"元!扫码还是现金")
\ 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