Commit 98ae67f7 by BellCodeEditor

auto save

parent fe70abef
Showing with 8 additions and 8 deletions
total = [] total = []
unit='a' unit='a'
def new_mune(): def new_mune():
unit=input('请输入:') while True:
unit=input('请输入:')
while True: if unit=="q":
new_mune() break
if unit=="q": else:
break total.append(unit)
else: new_mune()
total.append(unit)
print(total) print(total)
\ 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