1. 程式人生 > >Python複習筆記(二)變數進階

Python複習筆記(二)變數進階

02. 可變和不可變型別

  • 不可變型別,記憶體中的資料不允許被修改:

    • 數字型別 int , bool , float , complex , long(2.x)
    • 字串 str
    • 元組 tuple
  • 可變型別,記憶體中的資料可以被修改:

    • 列表 list
    • 字典 dict

注意:字典的  key 只能使用不可變型別的資料