#try……except……:代码错误后执行
try:
age = int(input('请输入一个整数:'))
except Exception:
print('要输入整数噢')
# exception是一般错误的集合
#try……except……:代码错误后执行
try:
age = int(input('请输入一个整数:'))
except Exception:
print('要输入整数噢')
# exception是一般错误的集合
本文标题:函数2:try……except……
本文链接:https://www.haomeiwen.com/subject/cksguhtx.html
网友评论