天天看點

python3中的6種标準資料類型

python3中有且隻有6種标準資料類型:

  • Number(數字)
  • String(字元串)
  • List(清單)
  • Tuple(元組)
  • Set(集合)
  • Dictionary(字典)

其中:

不可變的有:Number、String、Tuple

可變的有:List、Set、Dictionary