Python訪問列表中的值

2022-06-19 12:51:12 字數 1658 閱讀 9575

python訪問列表中的值:

列表中可以包含所有資料型別:

#

列表中可以存放 數字資料型別資料

#int 型資料

lst = [1,2,3]

print

(lst)

#[1, 2, 3]

#float 型資料

lst = [1.1,2.2,3.3]

print

(lst)

#[1.1, 2.2, 3.3]

#complex 型資料

lst = [1.3+4j,2+5j,3+9j]

print

(lst)

#[(1+4j), (2+5j), (3+9j)]

## 列表中可以存放 字串資料型別資料

#str 型資料

lst = ['

1','

2','3'

]print

(lst)

#['1', '2', '3']

## 列表中可以存放 字典資料型別資料

#dict 型資料

lst = [,,]

print

(lst)

#[, , ]

## 列表中可以存放 元組資料型別資料

#tuple 型資料

lst = [(1,2,3)]

print

(lst)

#[(1, 2, 3)]

## 列表中可以存放 集合資料型別資料

#set 型資料

lst =

print

(lst)#

#使用 list 對資料進行強制轉換

lst = list((1,2,3))

print

(lst)

#[1, 2, 3]

訪問列表元素:

通過索引下標:

#

通過索引下標獲取列表元素

lst = [1,4,7,2,5,8]

print("

lst 的第乙個元素是

",lst[0])

#lst 的第乙個元素是 1

print("

lst 的第四個元素是

",lst[3])

#lst 的第四個元素是 2

通過切片進行獲取:

#

切片 [start(預設為 0 ),end(一直到 end-1 位置),step(預設為 1 )]

#預設的都可以省略不寫

#列表翻轉

lst = [1,4,7,2,5,8] #

8 的索引位置是 5

print(lst[::-1])

#[8, 5, 2, 7, 4, 1]

print(lst[2:5]) #

不包含 5

#[7, 2, 5]

print(lst[2:5:2]) #

不包含 5

#[7, 5]

2020-02-09

python 列表訪問方式

1 可以使用索引訪問列表內容。序列中的索引編號,都是從0開始遞增 numbers 1,2,3,4,5,6 numbers 0 輸出12 使用切片進行訪問 numbers 1,2,3,4,5,6,7,8,9,10 numbers 1 4 2,3,4 numbers 0 1 1 numbers 7 10...

python訪問列表元素

在python中如果想見列表的內容輸出也是比較簡單的,可以直接使用print 函式 例項 import datetime 匯入日期時間類 定義乙個列表 mot 我資訊保安小萌新 終於進實驗室了 我一定努力學習 早日成為大佬 day datetime.datetime.now weekday 獲取當前...

查詢列表中某個值的位置(python)

p list.index value list為列表的名字 value為查詢的值 p為value在list的位置 以下內容引自 python3.2.2列表操作總結 list操作 快速建立list 新增item 刪除item 重新賦值item 顛倒item順序 檢索item 快捷建立list,兩種方式...