Commit 6c7dc524 by BellCodeEditor

save project

parent 95994241
Showing with 6 additions and 1 deletions
...@@ -12,7 +12,12 @@ def new_total(): ...@@ -12,7 +12,12 @@ def new_total():
if unit== 'q': if unit== 'q':
break break
else: else:
total.append(unit) try:
int(unit)
except:
print('給我输真缺德蔡明')
else:
total.append(unit)
print(total) print(total)
for i in len(total): for i in len(total):
if i in cai: if i in cai:
......
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