Commit d62a7d50 by BellCodeEditor

auto save

parent 3bf2e184
Showing with 10 additions and 4 deletions
total = [] def 函数():
while True: total = []
while True:
unit= input("请输入:") unit= input("请输入:")
if unit== 'q': if unit== 'q':
break break
else: else:
try:
unit=int(unit)
total.append(unit) total.append(unit)
print(total) except:
\ No newline at end of file print("提示信息,请输入整数")
return total
print(函数())
\ 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