python 3.0 字典的增刪改查

来源:https://www.cnblogs.com/Karenbest/archive/2018/04/29/8971616.html
-Advertisement-
Play Games

一、字典的定義方法: 1、dic = {'name':'Karen','age':22,'hobby':'girl','is_handsome':True} print(dic) #==>{'name':'Karen'} dic = {'name':'Karen','age':22,'hobby': ...


一、字典的定義方法:

1、dic = {'name':'Karen','age':22,'hobby':'girl','is_handsome':True}

print(dic)    #==>{'name':'Karen'}

            dic = {'name':'Karen','age':22,'hobby':{‘name’:'xu','age':22},'is_handsome':True}

2、dic=dict((('name','Karen'),))  ||  dic=dict((['name','Karen'],))  ||   dic=dict([['name','Karen'],]) ||      dic=dict([('name','Karen'),])

print(dic)    #==>{'name':'Karen'}

字典的兩大特點:無序性,鍵唯一

字典的鍵只能存不可變元素>>>>>不可變類型:整型、字元串、元組           可變類型:列表、字典

二、增加

1、    dic1={'name':'Karen'}

          dic1['age']=18

     print(dic1)     #==>{'name':'Karen','age':18}

2、    dic1.sendefault('age',22)    #如果有這個鍵值對,則不做任何操作並返回值,如果沒有則增加並返回該值

     print(dic1)

三、查找

1、    dic={'name':'Karen','age':18}

print(dic['name'])    #==>Karen

2、    print(dic.keys())     #==>只列印鍵

該類型為dict_keys類型,並不是列表

print(dic.values())    #==>只列印值

print(dic.items())   #==>列印鍵值對

四、改

1、    dic={'name':'Karen','age':18}

    dic['age']=33

          print(dic)   #==>{'name':'Karen','age':33}

2、    dic={'name':'Karen','age':18}

          dic1={'a':'aaa','b':'bbb'}

     dic.update(dic1)      #若有值則替換

五、刪除

1、    dic={'name':'Karen','age':18}

     del dic('name')

     print(dic)    #==>dic={'age':18}    刪除整個鍵值對

2、    dic.clear()

     print(dic)    #==>dic={}

3、    dic.pop('age')

    print(dic)    #==>dic={'age':18}    刪除整個鍵值對並將該值作為返回值返回

4、    a=dic.popitem()

    print(a,dic)    #隨機刪除

六、其他操作以及涉及到的方法

1、dic=dict.fromkeys(['host1','host2','host3'],'test')

print(dic)   #==>{'host1','host2','host3','test'}    初始化帶有鍵的字典,沒有值

2、dic=[5:'555',2:'666',4:'444']

   print(sorted(dic.items()))

   print(sorted(dic.keys()))

   print(sorted(dic.values()))

3、dic={'name':'Karen','age':18}

  for  i  in  dic:

       print(i,dic[i])


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door ...
  • Given a non negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
  • 傳遞多個參數的四種方式: 順序傳參:public User selectUser(String name,int deptId); <select id="selectUser" resultType="user">select * from user where user_name=#{0} an ...
  • 原文鏈接:https://www.codemore.top/cates/Backend/post/2018-04-21/spring-mvc-handler-methods 由註解@RequestMapping註解修飾的處理請求的函數的簽名非常的靈活,可以使用controller函數支持的一系列參數 ...
  • A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child. Input Each input file contain ...
  • 二、springboot+mybatis的使用 1.springboot的註解:@SpringBootApplication :啟動項目:整合常用註解(@Configuration,@EnableAutoConfiguration,@ComponentScan)/掃包作用(只能在當前同級包下) @E ...
  • 作為一個Python Web 開發工程師,pyg0每天都喜滋滋的寫著基於各種web框架的業務代碼。 突然有一天,技術老大過來跟pyg0說,嘿,我們要新上線一個服務,你來幫我部署一下吧。不用太複雜。用gunicorn跑flask, 啟8個進程, 用gevent模式跑就可以。這個很好配,給你一個小時吧。 ...
  • Java的5個標簽庫:核心(c)、格式化(fmt)、函數(fn)、SQL(sql)、XML(x) SQL、XML庫不推薦使用 核心標簽庫(c) <c:out> <c:if> <c:choose>、<c:when>、<c:otherwise> <c:forEach>、<c:forTokens> <c: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...