Python學習之元組詳解(創建,特性,常用方法及應用場景)

一.元組的創建 1.元組(tuple):元組本身是不可變數據類型,沒有增刪改查 2.元組內可以存儲任意數據類型 t = (1,2.3,True,'star') print(t) print(type(t)) 結果: (1, 2.3, True, 'star') <class 'tuple'> 3.元組裏麪包含可變數據類型,可以間接修改元組內容 t1 = ([1,2,3],4) t1[0].app
相關文章
相關標籤/搜索