Commit 38455ebb by BellCodeEditor

save project

parent b9f3597a
Showing with 15 additions and 4 deletions
# 和你的小伙伴讲讲史上有名的三英战吕布的故事。然后完成下面挑战,并说说列表切片是什么,怎么用: def new_input():
total=[]
# 省略繁杂情节,刘关张三人一起冲入战场,围攻吕布: while True:
\ No newline at end of file unit=input('请输入(q退出):')
if unit=='q':
break
else:
try:
unit=int(unit)
except:
print('请输入一个整数')
else:
total.append(unit)
print(total)
new_input()
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