swift學習第五章 字典的使用

2021-09-08 10:20:56 字數 888 閱讀 5933

//以下是關於字典的

//字典的格式[key:value]

//字典能夠存放基本型別和物件型別的

//宣告乙個字典

var dictionary1=["key1":"鴨鴨","key2":"肉包"]

var keyvaluecount=dictionary1.count//獲取這個字典裡面鍵值對的個數

dictionary1["key1"]="**"//改變相應健的值

//updatevalue()//改變相應的鍵值,返回原來的值

if var value1=dictionary1.updatevalue("菜包",forkey:"key2")

//假設這個健再字典不存在,取值就會返回false,存在就會返回true

if dictionary1["key3"] else

dictionary1["key1"]=nil//設定相應鍵值為nil,系統會自己主動刪除位nil的鍵值

//removevalueforkey()//假設這個鍵值存在,就刪除相應的value,返回刪除的value,否則就會返回nil

if dictionary1.removevalueforkey("key1") else

//遍歷字典裡面的鍵值對

for (key,value) in dictionary1

//遍歷全部的健

for key in dictionary1.keys

//遍歷全部的value

for value in dictionary1.values

var keys=dictionary1.keys//獲取存在全部健的陣列

var values=dictionary1.values //獲取全部的值的陣列

python第五章 Python學習(第五章)

記錄所有的名片字典 card list defshow menu 顯示資訊 print 50 print 歡迎使用 名片管理系統 v1.0 print print 1.新增名片 print 2.顯示全部 print 3.搜尋名片 print print 0.退出系統 print 50 defnew ...

第五章 容器之字典

知識點 字典 dictionary 用鍵值對 key value 來表示,可以用鍵 key 來查詢值 value 反之不行。字典用來儲存成對出現的資料。字典的建立 鍵值對的新增及查詢 刪除。可以用 in 或者not in 來查詢鍵 key 是否在字典裡,但不可以用來查值 x dict a 1,b 2...

python學習第五章

1.把某件事作為另一件事匯入 import somemodule或from somemodule import somefunction或者from somemodule import somefunction,anotherfunction,yetanotherfunction或者from som...