1. 程式人生 > >python_ 學習筆記(基本數據類型)

python_ 學習筆記(基本數據類型)

bool ict pytho 數據類型 字符串 使用 type() () python

python3有6中標準數據類型:Number(數字)、String(字符串)、List(列表)、Tuple(元組)、Dictionary(字典)、Set(集合)
不可變數據:Number、String、Tuple

使用 type() 來查看對象類型,使用instanceof(type)查看是否為該類型或其子類

  • Number(int、float、bool、complex)

python_ 學習筆記(基本數據類型)