函数2:try……except……
2020-03-31 本文已影响0人
Iphone60Plus
#try……except……:代码错误后执行
try:
age = int(input('请输入一个整数:'))
except Exception:
print('要输入整数噢')
# exception是一般错误的集合
#try……except……:代码错误后执行
try:
age = int(input('请输入一个整数:'))
except Exception:
print('要输入整数噢')
# exception是一般错误的集合