Commit 1144faf6 by BellCodeEditor

save project

parent 4b604b70
Showing with 2012 additions and 4 deletions
a = [] a = []
while True: while True:
b = input("請輸入:") try:
a.append(b) b = int(input("請輸入:"))
if b == "q": except:
break print("请输入数字")
else: else:
list.append(b) list.append(b)
print(a) print(a)
...@@ -12,3 +14,2009 @@ print(a) ...@@ -12,3 +14,2009 @@ print(a)
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