Python基礎知識(七)字典 列表互相巢狀

2021-10-08 08:33:32 字數 1424 閱讀 5566

1、字典列表——列表中巢狀字典

先建立字典,再將字典巢狀進列表中,列印出列表

練習:

friend1 =

friend2 =

friends = [friend1,friend2]

for friend in friends:

print(friend)

執行結果:

練習2:for friend in friends[:5]: #提取列表中前5個字典

print(friend)

print(』……』)

執行結果:

……

2、在字典中儲存列表

簡單列表

練習:

friend =

#將列表巢狀進字典裡

print(friend) #列印字典

for friends in friend[『like_color』]:

print(friends) #列印字典中的列表

執行結果:

redgray

purple

多個列表

練習:

friend =

for information,hobby in friend.items():

#items()將乙個字典以列表的形式返回

for hobbys in hobby:

print( hobbys.title())

# title()返回標題化的字串

練習結果:魚兒

劉30北京

上海深圳

redgray

purple

3、在字典中儲存字典

練習:

users = , 『mcurie』: , }

for username,userlist in users.items():

print(username.title())

print(userlist.items())

執行結果:

aeinstein

dict_items([(『first』, 『albert』), (『last』, 『einstein』), (『location』, 『princeton』)])

mcurie

dict_items([(『first』, 『marie』), (『last』, 『curie』), (『location』, 『paris』)])

Python基礎知識2 字典

字典一種key value 的資料型別,就像上學用的字典通過拼音查詢漢字一樣 字典是python語言中唯一的對映型別。字典物件是可變的,它是乙個容器型別,能儲存任意個數的python物件,其中也可包括其他容器型別。對映型別物件裡雜湊值 鍵,key 和指向的物件 值,value 是一對多的的關係,通常...

python基礎知識3 字典

字典 宣告 增刪改查 宣告空字典 new dict 增,示例1 key是字串,value可以是任意資料型別 new user name zhangsan new user inst 計算機 英語 跑步 new user score 95.5 print new user 示例2 key為純數字 us...

Python基礎知識(八) 字典

由一系列鍵值對組成的可變雜湊容器。雜湊 每條記錄無序。鍵必須惟一且不可變 字串 數字 元組 值沒有限制。字典記憶體圖 建立字典 字典名 鍵不能相同,值可以相同 字典名 dict 可迭代物件 新增 修改元素 語法 字典名 鍵 資料 dict01 qtx 100說明 鍵不存在,建立記錄。鍵存在,修改對映...