Python 列表的建立及使用

2021-10-10 20:46:10 字數 2998 閱讀 8425

1、列表list

2、列表的建立

#列表的建立一

a_list [

'a',

'b',

'python'

,'z'

,'example'

]b_list =

#建立空列表

#列表的建立一

c_list =

list

(range(10

))#使用list()內建函式

d_list =

list

('hello'

)print

(c_list)

#[0,1,2,3,4,5,6,7,8,9]

print

(d_list)

#['h','e','l','l','o']

list=[

'red'

,'green'

,'blue'

,'yellow'

,'white'

,'black'

]print

(list[0

])print

(list[1

])print

(list[2

])

以上例項輸出結果:

red

green

blue

list=[

'red'

,'green'

,'blue'

,'yellow'

,'white'

,'black'

]print

(list[-

1])print

(list[-

2])print

(list[-

3])

以上例項輸出結果:

black

white

yellow

nums =[10

,20,30

,40,50

,60,70

,80,90

]print

(nums[0:

4])

以上例項輸出結果:

[10,

20,30,

40]

list=[

'google'

,'runoob'

,"zhihu"

,"taobao"

,"wiki"

]# 讀取第二位

print

("list[1]: "

,list[1

])# 從第二位開始(包含)擷取到倒數第二位(不包含)

print

("list[1:-2]: "

,list[1

:-2]

)

以上例項輸出結果:

list[1

]: runoob

list[1

:-2]

:['runoob'

,'zhihu'

]

list=[

'google'

,'runoob'

,1997

,2000

]print

("原始列表 : "

,list

)del

list[2

]print

("刪除第三個元素 : "

,list

)

以上例項輸出結果:

原始列表 :

['google'

,'runoob'

,1997

,2000

]刪除第三個元素 :

['google'

,'runoob'

,2000

]

l4 =[6

,7,8

,9,10

]l4.pop(1)

#索引下標為1的位置上的元素被刪除

print

(l4)

>>

>[6

,8,9

,10]#7被刪除

l3 =[6

,7,8

,9,10

]l3.pop(

)#不指定位置是預設刪除列表中尾部元素

print

(l3)

>>

>[6

,7,8

,9]

l5 =[1

,2,1

,1,1,2

]l3.remove(2)

print

(l5)

>>

>[1

,1,1

,2]#列表中首次出現的數字2被刪除

print

([i for i in

range(10

)])#生成列表[0,1,2,3...9]

eg2:

print

([i for i in

range(10

)if i%2==

0])#輸出0-9之間的偶數

eg3:

fruit =

[' banana ',,

' peach'

]f1 =

[i.strio(

)for i in fruit]

#去除fruit中元素兩邊的空格

print

(f1)

>>

>

python 使用列表建立字典

0.摘要 本文主要介紹如果將兩個列表作為鍵 值,快速建立字典。1.使用列表快速生成字典的 key list d u b x g m k y h w value list 68,85,66,88,71,77,75,89,72,87 dict1 dict zip key list,value list ...

Python列表建立及相關函式

列表 或list 建立鍊錶 empty list weekdays monday tuesday wednesday thursday firday another empty list list print another empty list print list cat 使用offset獲取元...

python數值列表的建立和使用

需要儲存一組數字的原因有很多,例如,在遊戲中,需要跟蹤每個角色的位置,還可能需要跟蹤玩家的幾個最高得分。在資料視覺化中,處理的幾乎都是由數字 如溫度 距離 人口數量 經度和緯度等 組成的集合 列表非常適合用於儲存數字集合,而python提供了很多任務具,可幫助高效地處理數字列表。python函式 r...