Commit 65ae3b53 by BellCodeEditor

auto save

parent 024fb164
Showing with 26 additions and 9 deletions
def 输出(a):
print(a)
def 输入(c):
input(c)
b=输入('sb')
输出(b)
\ No newline at end of file
total = []
while True:
unit= input("请输入:")
if unit== 'q':
break
else:
total.append(unit)
print(total)
\ No newline at end of file
# total = []
# def _鼠标():
# while True:
# unit= input("请输入:")
# if unit== '':
# break
# else:
# total.append(unit)
# print(total)
# _鼠标()
try:
age = int(input('how old are you?'))
except:
print('yao shu ru zheng shu a')
else:
if age <18:
print('bu ke yi he jiu,kai che,chou yan o')
print('cheng xu jie shu~~')
\ 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