Commit 05bc5fad by BellCodeEditor

auto save

parent 3eb6c718
Showing with 20 additions and 15 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 = []
unit= input("请输入:") while True:
try: unit= input("请输入:")
int(unit) if unit=='q':
except: break
print("玩我呢 3.141592653587989426323") try:
else: unit=int(unit)
total.append(unit) except:
print(total) print("玩我呢")
else:
\ No newline at end of file total.append(unit)
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