list_1 = ['1','2',3,4,1,2,1,'1'
]# count()
自己實現乙個
count
函式#
如果有返回
object
在list_1
中出現的次數
# 如果沒有返回
0def
count
(list_1,object)
:count =
0for obj in list_1:
if object == obj:
count +=
1return count
# index()
自己實現乙個
index
函式def
index
(list_1,object)
:index_list =
# enumerate:
列舉#
拿到之後 乙個乙個的小元組, 小元組中檔的是資料索引和資料
for item in
enumerate
(list_1)
:# item[1]
取出小元組中的資料
if item[
1] == object:
# item[0]
資料對應的索引0]
(item)
# 如果有元素返回
object
在list_1
中的索引
# 如果沒有返回
-1return index_list
index_list = index(list_1,1
(index_list)
Python 期中考複習 列表與元組
建立range物件格式 range start,stop step s range 2 10,2 list s 2,4,6,8 列表的建立 a list 1 2.0 large b lost list 1,2,3,4,5 1,2,3,4,5 list range 1 6,2 1 3,5 list a...
複習一下 列表
列表的內建方法 l l.insert 0,88 在0這個位置上插入88值 l.l.extend x,y 把乙個列表中的多個值放進去 l 列表 l.remove 值 l.pop 索引 刪除索引位置的值 l.claer 列表清空 del lst 1 3 l.pop 刪除最後乙個數 lst.sort 排序...
筆記05 複習 列表 元祖 字典
列表 元祖 字典 集合 一 列表 list 在python中列表是可變的序列。在形式上列表的所有元素都放到乙個中括號中 兩個相鄰的元素使用逗號隔開小寫的 逗號 在內容上,列表中可以放置任意型別的元素在列表中,並且同乙個列表中元素的型別可以不同,因為他們之間沒有任何的關係。列表是非常的靈活的 列表在以...