Commit c3ed5109 by BellCodeEditor

save project

parent 9be9a218
Showing with 10 additions and 10 deletions
def new_input:
def new_input():
total=[]
input()
while Ture:
unit=inpot()
if unit=="q"
berak
else:
total.append(unit)
print(total)
\ No newline at end of file
while True:
a=input("请输入:")
if a=="q":
break
else:
total.append(a)
print(total)
new_input()
\ 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