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

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

python字典操作總結

系統 1903 0

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

一、創建字典


Python有兩種方法可以創建字典,第一種是使用花括號,另一種是使用內建 函數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 來進行操作

            
              
                #修改字典
              
              
                >>
              
              
                >
              
               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()進行遍歷,分別獲取字典中的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、將字典嵌入到字典


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

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

【本文對您有幫助就好】

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

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 肥城市| 聂拉木县| 新河县| 远安县| 孝义市| 五莲县| 青川县| 石阡县| 攀枝花市| 凤山市| 苗栗市| 汉阴县| 彝良县| 资中县| 张家口市| 定西市| 拉萨市| 内乡县| 南汇区| 和静县| 德清县| 疏勒县| 洪泽县| 砚山县| 会泽县| 冀州市| 滁州市| 平远县| 阜新| 涟水县| 公安县| 庆元县| 屏南县| 郸城县| 丰顺县| 泗水县| 灵寿县| 西昌市| 武鸣县| 邢台市| 合阳县|