Commit b97c39db by BellCodeEditor

auto save

parent f8d6bddc
Showing with 8 additions and 23 deletions
def new_input():
total = []
while True:
unit = input("请输入(q退出):")
if unit == "q":
break
else:
try:
unit = int(unit)
except:
print("请重新输入一个数字")
else:
total.append(unit)
print("-"*30)
return total
a=new_input()
print(a)
price()
\ No newline at end of file
def couet(money):
a=0
for i in range(money):
a=a+1
return a
money=[12,13,14]
b=couet(money)
print(b)
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