1. 程式人生 > >python - 內建資料結構總結

python - 內建資料結構總結

python資料型別:
數值型別
bool布林型別
str字串型別
list列表型別
tuple元組型別
set集合型別
dict字典型別

可變資料型別 不可變資料型別:
1.可變資料型別:list set dict(是否可以增刪改查)
2.不可變資料型別:數值 bool str tuple

有序資料型別和無序資料型別:
1.有序:str list tuple
2.無序:數值 bool set
特別注意:
python2:dict無序 python3中:dict有序
(一般情況下:有序資料型別可以索引,切片,連線,重複 但是字典除外)