異常處理——python經(jīng)典實例
提問人:楊紫紅發(fā)布時間:2020-11-26
#! /usr/bin/python
s=input("Input your age:")
if s =="":
raise Exception("Input must no be empty.")
try:
i=int(s)
except Exception as err:
print(err)
finally: # Clean up action
print("Goodbye!")
s=input("Input your age:")
if s =="":
raise Exception("Input must no be empty.")
try:
i=int(s)
except Exception as err:
print(err)
finally: # Clean up action
print("Goodbye!")
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>