1、定義元組用()或是tuple()定義
2、兩個方法index和count參考list對這兩個方法的使用
#陣列l=[
1,2,
3,4,
1,1,
1,1]
print
(l.index(2,
0,5)
)print
(l.count(1)
)#元組t=(
1,2,
3,4,
1,1,
1,1)
print
(t.index(2,
0,5)
)print
(t.count(1)
)#輸出結果:15
15
用一對{}或者dice()
部分使用方式和list相同
#字典
d=#insert
d['k3']=
3print
(d)#update
d['k3']=
4print
(d)#del
del d[
'k3'
]print
(d)#search or find
print
(d['k2'])
t=tc=t.copy()t[
'z1']=
3print
(tc)
#輸出結果:
2
Python資料結構總結
python資料型別 1.列表 list list是python總存放有序物件的容器,可以放置任何型別的資料,整型,字串,布林型等。列表用中括號來表示,不同元素之間用逗號隔開 list1 1,this is a list 6.66 2.字典 dictionary 字典是存放乙個無序的鍵值對映型別資料...
python資料結構總結 字典
可變的,無序的,key不重複 key 可雜湊的資料型別 str,bytes and 數值型別 value 無要求初始化字典 d dict d d dict kwargs 使用name value初始化乙個字典 dict iterable,kwargs 使用可迭代物件和name value對構造字典 ...
Python與資料結構總結(一)
一.學習了python的用處 python變數 1.內建函式type 用來返回變數型別,內建函式isinstance 用來測試是否為指定型別的例項。2.狀態機 在顯式修改其型別或修改之前,變數將一直保持上次的型別。3.字串和元祖屬於不可變序列,即不能通過下標方式修改其中的元素值。x 1,2,3 pr...