Python筆記(五) 變數型別之列表

2021-08-07 07:23:27 字數 4635 閱讀 6652

序列是python中最基本的資料結構。序列中的每個元素都分配乙個數字 - 它的位置,或索引,第乙個索引是0,第二個索引是1,依此類推。

python有6個序列的內建型別,但最常見的是列表和元組。

序列都可以進行的操作包括索引,切片,加,乘,檢查成員。

此外,python已經內建確定序列的長度以及確定最大和最小的元素的方法。

以下介紹列表

列表是最常用的python資料型別,它可以作為乙個方括號內的逗號分隔值出現。

列表的資料項不需要具有相同的型別

建立乙個列表,只要把逗號分隔的不同的資料項使用方括號括起來即可。如下所示:

list1 = ['hello', 'world', 1997, 2017]

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

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

與字串的索引一樣,列表索引從0開始。列表可以進行擷取、組合等。

使用下標索引來訪問列表中的值,同樣你也可以使用方括號的形式擷取字元,如下所示:

list1 = ['hello', 'world', 1997, 2017]

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

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

print list1[1]

print list2[2:]

print list3[:-2]

輸出:

world

[3, 4, 5]

['a', 'b']

list1 = ['hello', 'world', 1997, 2017]

print list1

list1[1]='computer'

print list1

print list1

print list1

輸出:

['hello', 'world', 1997, 2017]

['hello', 'computer', 1997, 2017]

['hello', 'computer', 1997, 2017, 21]

['hello', 'computer', 1997, 2017, 21, 'hi']

可以使用 del 語句來刪除列表的的元素,如下例項:

list1 = ['hello', 'world', 1997, 2017]

print list1

del list1[2]

print list1

輸出:

['hello', 'world', 1997, 2017]

['hello', 'world', 2017]

列表對 + 和 * 的操作符與字串相似。+ 號用於組合列表,* 號用於重複列表。

如下所示:

python 表示式

結果描述

len([1, 2, 3])3長度

[1, 2, 3] + [4, 5, 6]

[1, 2, 3, 4, 5, 6]

組合['hi!'] * 4

['hi!', 'hi!', 'hi!', 'hi!']

重複3 in [1, 2, 3]

true

元素是否存在於列表中

for x in [1, 2, 3]: print x,

1 2 3迭代

python包含以下函式:

序號函式

1cmp(list1, list2)

比較兩個列表的元素

2len(list)

列表元素個數

3max(list)

返回列表元素最大值

4min(list)

返回列表元素最小值

5list(seq)

將元組轉換為列表

python包含以下方法:

序號方法

1在列表末尾新增新的物件

2list.count(obj)

統計某個元素在列表中出現的次數

3list.extend(seq)

在列表末尾一次性追加另乙個序列中的多個值(用新列表擴充套件原來的列表)

4list.index(obj)

從列表中找出某個值第乙個匹配項的索引位置

5list.insert(index, obj)

將物件插入列表

6list.pop(obj=list[-1])

移除列表中的乙個元素(預設最後乙個元素),並且返回該元素的值

7list.remove(obj)

移除列表中某個值的第乙個匹配項

8list.reverse()

反向列表中元素

9list.sort([func])

對原列表進行排序

list01 = ['runoob', 786, 2.23, 'john', 70.2]

list02 = [123, 'john']

print list01

print list02

# 列表擷取

print list01[0]

print list01[-1]

print list01[0:3]

# 列表重複

print list01 * 2

# 列表組合

print list01 + list02

# 獲取列表長度

print len(list01)

# 刪除列表元素

del list02[0]

print list02

# 元素是否存在於列表中

print 'john' in list02 # true

# 迭代

for i in list01:

print i

# 比較兩個列表的元素

print cmp(list01, list02)

# 列表最大/最小值

print max([0, 1, 2, 3, 4])

print min([0, 1])

# 將元組轉換為列表

atuple = (1,2,3,4)

list03 = list(atuple)

print list03

# 在列表末尾新增新的元素

print list03

# 在列表末尾一次性追加另乙個序列中的多個值(用新列表擴充套件原來的列表)

list03.extend(list01)

print list03

# 統計某個元素在列表中出現的次數

print list03.count(1)

# 從列表中找出某個值第乙個匹配項的索引位置

print list03.index('john')

# 將物件插入列表

list03.insert(0, 'hello')

print list03

# 移除列表中的乙個元素(預設最後乙個元素),並且返回該元素的值

print list03.pop(0)

print list03

# 移除列表中某個值的第乙個匹配項

list03.remove(1)

print list03

# 反向列表中元素

list03.reverse()

print list03

# 對原列表進行排序

list03.sort()

print list03

輸出:

['runoob', 786, 2.23, 'john', 70.2]

[123, 'john']

runoob

70.2

['runoob', 786, 2.23]

['runoob', 786, 2.23, 'john', 70.2, 'runoob', 786, 2.23, 'john', 70.2]

['runoob', 786, 2.23, 'john', 70.2, 123, 'john']

5['john']

true

runoob

7862.23

john

70.214

0[1, 2, 3, 4]

[1, 2, 3, 4, 5]

[1, 2, 3, 4, 5, 'runoob', 786, 2.23, 'john', 70.2]18

['hello', 1, 2, 3, 4, 5, 'runoob', 786, 2.23, 'john', 70.2]

hello

[1, 2, 3, 4, 5, 'runoob', 786, 2.23, 'john', 70.2]

[2, 3, 4, 5, 'runoob', 786, 2.23, 'john', 70.2]

[70.2, 'john', 2.23, 786, 'runoob', 5, 4, 3, 2]

[2, 2.23, 3, 4, 5, 70.2, 786, 'john', 'runoob']

**對應關係有點

Python快速入門(五)之列表

列表 一 建立列表 可以用 來建立乙個列表,列表中的元素之間使用逗號分隔。示例 建立列表list hello 金融 理財 123 list hello 金融 理財 123 type list class list list hello 保險 理財 123 二 獲取元素 可以使用索引獲取列表中的元素,...

Python變數之列表與字典

列表 list 列表 一系列元素 在乙個列表中可以儲存任意型別的元素 可變資料型別 可以修改列表中的元素 len 可以求列表中元素的個數 clear 清空 copy 複製 count 統計某個元素存在的個數 extend 擴充套件 把另外乙個列表中的元素逐一新增到列表中 index 下標 index...

2 變數型別 python筆記

變數的本質是,開闢的一塊記憶體,用來存放值。給變數賦值很容易 usr local bin python2.7 count1 100 count2 1000.9 count3 what the print count1,n count2,n count3 連續賦同乙個值 a b c 1,那麼a b c...