《Python程式設計 從入門到實踐》10 3 異常

2021-10-13 05:32:15 字數 898 閱讀 7420

try-except**塊

如果try**塊中的**執行正常,則跳過except**塊

如果try**塊中的**導致了錯誤,python將查詢與之匹配的except**塊並執行其中的**

try

:print(5

/0)except zerodivisionerror:

print

("you can't divide by zero!"

)

print

("give me two numbers, and i'll divide them."

)print

("enter 'q' to quit."

)while

true

: first_number =

input

("\nfirst number: "

)if first_number ==

'q':

break

second_number =

input

("\nsecond number: "

)if second_number ==

'q':

break

try:

answer =

int(first_number)

/int

(second_number)

except zerodivisionerror:

print

("you can't divide by 0!"

)# 僅在try**塊成功執行時才需要執行的**放在了else**塊中

else

:print

(answer)

Python程式設計 從入門到實踐 1

內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...

《Python程式設計 從入門到實踐》 1

2.變數和簡單資料型別 mystr this is a string print mystr 引號括起的都是字串,可以單引號,也可以雙引號。單引號內能帶雙引號,不能帶單引號,反之亦然。mystr.title mystr字串的每個單詞的首字母都大寫,其他字母都小寫 mystr.upper mystr字...

Python 程式設計 從入門到實踐

1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...