Commit 05bc5fad by BellCodeEditor

auto save

parent 3eb6c718
Showing with 13 additions and 7 deletions
rng=(0) rng=0
pug=(0) pug=0
uug=(0) uug=0
for i in range(100): for i in range(100):
pug=pug+1 pug=pug+1
int(pug) int(pug)
......
total = [] def new_feng():
while True: total = []
while True:
unit= input("请输入:") unit= input("请输入:")
if unit=='q':
break
try: try:
int(unit) unit=int(unit)
except: except:
print("玩我呢 3.141592653587989426323") print("玩我呢")
else: else:
total.append(unit) total.append(unit)
print(total) print(total)
return total
reversed=new_feng()
print(reversed)
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