Commit 23b7190b by BellCodeEditor

save project

parent 2fe8b869
Showing with 13 additions and 5 deletions
try:
def er():
total = []
while True:
......@@ -6,8 +6,15 @@ try:
if unit== 'q':
break
else:
total.append(unit)
print(total)
er()
except:
try:
fg=int(unit)
except:
print("NameError")
else:
total.append(unit)
finally:
print("-"*30)
return total
we=er()
print(we)
\ 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