Commit 32d8a4b5 by BellCodeEditor

save project

parent b62d35af
Showing with 11 additions and 8 deletions
b=[]
while True:
a = input("请输入:")
if a == "q":
break
else:
b.append(a)
\ No newline at end of file
def a():
b=[]
while True:
c = input("请输入:")
if c == "q":
break
else:
b.append(c)
print(b)
a()
\ 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