python中的list的用法

2021-10-08 22:05:47 字數 722 閱讀 7056

以下內容主要摘抄大佬部落格:

一、定義列表:

list1 = ['physics', 'chemistry', 1997, 2000]

list2 = [1,2,3,4,5]

list3 = ["a", "b", "c", "d"]

注意: python中定義列表

list =

或者:list =*100

二、訪問列表的值:

list1[0]  ;              #取第乙個元素

list1[-1]         # 取最後乙個元素

list1[ : ] 或者 list1[ : len(list1)] # 取所有列表元素

list1[0 : n]       # 從第0號取到n-1號元素

三、更新列表:

list1[0] = 'd'                # 修改元素值

list1.insert(0 , 'f')       # 在某處插入元素

四、移除元素

(1)del list1[0] #刪除第乙個元素

(2)list1.remove('1')#刪除第一次出現的元素

(3)list1.pop() # 移出元素,預設從最後移出,返回該元素值;括號中可加入元素索引值來移除

python中 list的用法彙總

list 列表 用 中括號 表示 list 1,1,2,3,5,8,9,4,1,6,1,1,1,l list 1,1,2,3,5,8,9,4,1,6,1,1,1,l 1 count 查詢元素出現多少次,下面的語句表示 1 這個元素在上面的列表中出現了多少次,出現了6次。list.count 1 62...

python中list的相關用法

list也叫列表,list的格式一般為li name 1,2,age 在列表最後追加乙個值 li 1,2,3,4,hello 11,22,ok 1111 print li 輸出結果 1,2,3,4,hello 11,22,ok 1111,1,2 clear 清空列表 li 1,2,3,4,hello...

c 中的list用法

include include include include using namespace std 建立乙個list容器的例項listint typedef list listint 建立乙個list容器的例項listchar typedef list listchar void main vo...