Python 保留字有哪些

2021-10-10 11:49:52 字數 742 閱讀 2551

保留字,即關鍵字,不能用作任何識別符號名稱。

python3中,如下:

[

'false'

,'none'

,'true'

,'and'

,'as'

,'assert'

,'async'

,'await'

,'break'

,'class'

,'continue'

,'def'

,'del'

,'elif'

,'else'

,'except'

,'finally'

,'for'

,'from'

,'global'

,'if'

,'import'

,'in'

,'is'

,'lambda'

,'nonlocal'

,'not'

,'or'

,'pass'

,'raise'

,'return'

,'try'

,'while'

,'with'

,'yield'

]

如果記不住,python標準庫提供了乙個keyword模組,可以輸出當前版本所有的關鍵字。

import keyword

keyword.kwlist

python保留字 python保留字有哪些

布林型別的值,表示假,與true對應 2 class 定義類的關鍵字 3 finally 異常處理使用的關鍵字,用它可以指定始終執行的 指定 在finally裡面 例如 class myexception exception pass try some code here raise myexcep...

python的保留字

保留字是python語言中一些已經被賦予特定意義的單詞,在軟體開發中,不允許使用保留字用於變數,函式,類模組以及其他物件的名稱。python保留字 and as assert break class continue def del elif else except finally for from...

python保留字及其說明

保留字 說 明 and用於表示式運算,邏輯與操作 as用於型別轉換 assert 斷言,用於判斷變數或條件表示式的值是否為真 break 中斷迴圈語句的執行 class 用於定義類 continue 繼續執行下一次迴圈 def用於定義函式或方法 del刪除變數或序列的值 elif 條件語句,與if,...