>>info={'color':'green','points':'5'}>>>info1=dict(color='green',points='5')>>>print(info)>>>p" />

日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

python字典操作總結(jié)

系統(tǒng) 1784 0

python中的字典等同于鍵—值對,1個key對應(yīng)1個value。
接下來總結(jié)下字典的一些常見操作
1、創(chuàng)建字典
2、添加、修改字典
3、刪除字典or字典中的值
4、遍歷字典
5、嵌套

一、創(chuàng)建字典


Python有兩種方法可以創(chuàng)建字典,第一種是使用花括號,另一種是使用內(nèi)建 函數(shù)dict

            
              
                >>
              
              
                >
              
               info 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
               info1 
              
                =
              
              
                dict
              
              
                (
              
              color
              
                =
              
              
                'green'
              
              
                ,
              
               points
              
                =
              
              
                '5'
              
              
                )
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info
              
                )
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info1
              
                )
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
            
          

二、添加or修改字典


都是通過 dict[key] = value 來進(jìn)行操作

            
              
                #修改字典
              
              
                >>
              
              
                >
              
               info 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
               info
              
                [
              
              
                'color'
              
              
                ]
              
              
                =
              
              
                'blue'
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info
              
                )
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'blue'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                #添加字典
              
              
                >>
              
              
                >
              
               info1 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
               info1
              
                [
              
              
                'position'
              
              
                ]
              
              
                =
              
              
                50
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info1
              
                )
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                ,
              
              
                'position'
              
              
                :
              
              
                50
              
              
                }
              
            
          

三、刪除字典or字典中的值


1、刪除字典 del dict
2、刪除字典中的值 del dict[key]

            
              
                >>
              
              
                >
              
               info 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
               info1 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
              
                del
              
               info

              
                >>
              
              
                >
              
              
                del
              
               info1
              
                [
              
              
                'color'
              
              
                ]
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info
              
                )
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              info1
              
                )
              
              
NameError
              
                :
              
               name 
              
                'info'
              
              
                is
              
              
                not
              
               defined

              
                {
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
            
          

四、遍歷字典


1、通過dict.items()進(jìn)行遍歷,分別獲取字典中的key和value

            
              
                >>
              
              
                >
              
               info 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'points'
              
              
                :
              
              
                '5'
              
              
                }
              
              
                >>
              
              
                >
              
              
                for
              
               key
              
                ,
              
              value 
              
                in
              
               info
              
                .
              
              items
              
                (
              
              
                )
              
              
                :
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              key
              
                )
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              value
              
                )
              
              
color
green
points

              
                5
              
            
          

2、通過dict.keys(),遍歷字典中所有的鍵
3、通過dict.values(),遍歷字典中所有的值

五、字典的嵌套


1、將字典嵌套入列表

            
              
                >>
              
              
                >
              
               alien1 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                5
              
              
                }
              
              
                >>
              
              
                >
              
               alien2 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'yellow'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                10
              
              
                }
              
              
                >>
              
              
                >
              
               alien3 
              
                =
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'black'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                15
              
              
                }
              
              
                >>
              
              
                >
              
               aliens 
              
                =
              
              
                [
              
              alien1
              
                ,
              
               alien2
              
                ,
              
               alien3
              
                ]
              
              
                >>
              
              
                >
              
              
                for
              
               alien 
              
                in
              
               aliens
              
                :
              
              
                >>
              
              
                >
              
              
                print
              
              
                (
              
              alien
              
                )
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'green'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                5
              
              
                }
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'yellow'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                10
              
              
                }
              
              
                {
              
              
                'color'
              
              
                :
              
              
                'black'
              
              
                ,
              
              
                'point'
              
              
                :
              
              
                15
              
              
                }
              
            
          

2、將列表嵌入到字典

3、將字典嵌入到字典


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 湘西| 海宁市| 楚雄市| 新巴尔虎右旗| 沛县| 砚山县| 扎兰屯市| 卢湾区| 噶尔县| 土默特右旗| 珲春市| 罗甸县| 陵水| 宝兴县| 深圳市| 克东县| 雅安市| 炎陵县| 双辽市| 陇川县| 宝应县| 青铜峡市| 凭祥市| 太保市| 夏邑县| 淳化县| 盐城市| 韶山市| 图木舒克市| 广汉市| 台湾省| 历史| 龙岩市| 洛宁县| 乌兰察布市| 南乐县| 南丰县| 天长市| 林口县| 林周县| 清丰县|