【小白必看】Python入門知識之常用關鍵字!

老男孩IT教育機構發表於2021-05-14

  你知道Python常用關鍵字有哪些嗎?有哪些關鍵字是你不太瞭解的呢?今天小編透過這篇文章為大家介紹一下。

  1、內建常量:False、none、True;

  >>> False == 0

  True

  >>> True == 1

  True

  >>> type(False)

  >>> type(None)

  2、邏輯與或非 and or not,優先順序 not and or;

  x and y 如果 x 為 False 、空、0,返 回 x,否則返回 y

  x or y 如果 x 為 False、 空、0,返回 y,否則返回x

  not x 如果 x 為 False、 空、0,返回 True,否則返回False

  3、判斷與迴圈:if elif else is in for while break continue;

  4、函式:def lambda pass return yied;

  5、異常處理:try except finally raise assert;

  6、匯入模組包:import from;

  7、重新命名:as;

  8、變數:global nonlocal;

  9、類:class;

  10、刪除:del;

  11、上下文管理:with。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952527/viewspace-2772282/,如需轉載,請註明出處,否則將追究法律責任。

相關文章