Python教程 列表與字典結合

2021-09-28 13:01:47 字數 1148 閱讀 7183

在列表中儲存字典

我們先建立三個字典,每個字典代表著乙個學生的資訊,然後使用列表把這些學生資訊裝起來

生成10個學生資訊

student_list =

for student in

range(1

,10):

new_student =

#加入學生資訊

new_student[

'id'

]= student #id自增

在字典中儲存列表

我們先建立乙個字典,裡面儲存學生資訊,班級,課程

students =

print

(students[

'student'

])

遍歷字典

在字典中還可以儲存字典

字典除了可以儲存列表之外,還可以儲存字典,如:

students =

,"student2":,

"student3":}

print

(students[

'student1'

])

python 列表與字典轉換

在寫爬蟲的時候,經常需要處理cookie,requests庫里的cookie是dict,但是headers cookie 卻是乙個key value的字串。coding utf 8 import logging key value列表轉換成cookie字典 defcookie list 2 dict...

python字典實驗 列表 元組 集合與字典

in not in 判斷元素是否在其中 適用於列表 元組 集合 list使用手冊 len 查詢 list 長度 remove 刪除指定元素 count 查詢元素在 list中的位置 reverse 反轉list del list 刪除位置上的元素 insert 插入元素 第乙個值為 元素位置 第二值...

python 字典 列表

dictionary 字典,是除列表以外,python中最靈活的資料型別。字典可以儲存多個資料,儲存相關的資訊 dict 字典使用鍵值對儲存資料,鍵值對鍵名和鍵值 鍵名 key 就是鍵索引 鍵值 value 是資料 鍵名和鍵值之間用 值可以是任何型別,鍵名只能是字串 數字,元組 列表是有序的集合 下...