在 python 中,變數不用宣告,也沒有範圍 (除了 bool 型態以外),這對程式
設計師而言,真是天大的福音。但是不要忘記精確度,有些數字會被精確度
破壞,爾後會在後面舉範例說明。

Python 資料型態
功能說明 指令 範例
變數命名
  1. 開頭字母必須大小寫 A - Z 、 a - z 或底線 _
  2. 第二字母以後,除了前開 大小寫字母、 底線外,還可以加入數字  
  3. 大小寫有別
正確:x2、_yT、S47、_init_
錯誤:2x、 Me@、psxt
關鍵字
  1. 以下為 python 關鍵字應避開
  2. andasassertbreakclasscontinue
    defdeldirelifelseexcept
    Falsefinallyfloatforfromglobal
    ifimportinislambdalist
    Nonenonlocalnotorpassraise
    returnstrTruetrytuplewhile
    withyield    
  3. 內建函數名稱也應避免。