您好,登錄后才能下訂單哦!
字典
dict_fruit = {'apple':'蘋果','banana':'香蕉','cherry':'櫻桃','avocado':'牛油果','watermelon':'西瓜'}
字典的操作
#字典的遍歷方式 #默認遍歷(遍歷key) for value in dict_fruit: print(value) ''''' 遍歷出的值: watermelon apple cherry avocado banana ''' #使用key遍歷(與默認遍歷一樣) for key in dict_fruit.keys(): print(key) ''''' 遍歷出的值: watermelon apple cherry avocado banana ''' #使用value遍歷 for value in dict_fruit.values(): print(value) ''''' 遍歷出的值: 蘋果 牛油果 香蕉 西瓜 櫻桃 ''' #使用key,value遍歷 for key,value in dict_fruit.items(): print(key+'--->'+value) ''''' 遍歷出的值: avocado--->牛油果 apple--->蘋果 banana--->香蕉 cherry--->櫻桃 watermelon--->西瓜 ''' #創建字典 #使用dict() res = dict(brand = '品牌',size='尺碼',color='顏色') print(res,type(res)) ''''' res結果: {'size': '尺碼', 'brand': '品牌', 'color': '顏色'} <class 'dict'> ''' #使用zip()和dict() keys = ['1','2','3','4','5'] values = [1,2,3,4,5] res = dict(zip(keys,values)) print(res,type(res)) ''''' res結果: {'3': 3, '4': 4, '1': 1, '2': 2, '5': 5} <class 'dict'> ''' #字典的推導式 res = {k+'的中文是'+v for k,v in dict_fruit.items()} print(res) ''''' res結果: {'watermelon的中文是西瓜', 'avocado的中文是牛油果', 'banana的中文是香蕉', 'cherry的中文是櫻桃', 'apple的中文是蘋果'} '''
字典的函數
#清空字典 test1 = {1:'1'} test1.clear() print(test1) ''''' test1結果: {} ''' #復制字典(復制成一個新字典) test2 = {2:'2'} test2_copy = test2.copy() print(test2_copy) ''''' test2結果: {2: '2'} ''' #使用指定的key和value制作一個字典 list_test = ['a','b','c'] test3 = {}.fromkeys(list_test,'ojbk') print(test3) ''''' test3結果: {'a': 'ojbk', 'b': 'ojbk', 'c': 'ojbk'} ''' #將一個字典轉化為二級容器(中間容器) res = dict_fruit.items() print(res,type(res)) ''''' res結果: dict_items([('avocado', '牛油果'), ('apple', '蘋果'), ('banana', '香蕉'), ('watermelon', '西瓜'), ('cherry', '櫻桃')]) <class 'dict_items'> ''' #將字典的key組成新的容器 res = dict_fruit.keys() print(res,type(res)) ''''' res結果: dict_keys(['watermelon', 'cherry', 'avocado', 'apple', 'banana']) <class 'dict_keys'> ''' #將字典的value組成新的容器 res = dict_fruit.values() print(res,type(res)) ''''' res結果: dict_values(['牛油果', '香蕉', '櫻桃', '蘋果', '西瓜']) <class 'dict_values'> ''' #根據key刪除字典中的數據 test4 = {1:'1',2:'2',3:'3'} test4.pop(2) print(test4) ''''' test4結果: {1: '1', 3: '3'} ''' #依次彈出(刪除)字典中的數據 test5 = {1:'1',2:'2',3:'3',4:'4',5:'5'} test5.popitem() print(test5) test5.popitem() print(test5) test5.popitem() print(test5) ''''' test5依次結果: {2: '2', 3: '3', 4: '4', 5: '5'} {3: '3', 4: '4', 5: '5'} {4: '4', 5: '5'} ''' #更新dict中的數據(更新一個不存在的key時,可用于添加新數據) test6 = {'super':'Eric','ssuper':'Cbabe','sssuper':'Gogo','supreme':'wiz333'} #更新數據 test6.update(super='Eric-LPL') print(test6) #添加數據 test6.update(niceboy='Bigmao') print(test6) ''''' test6依次結果: {'ssuper': 'Cbabe', 'supreme': 'wiz333', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} {'ssuper': 'Cbabe', 'supreme': 'wiz333', 'niceboy': 'Bigmao', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} ''' #獲取dict中的數據(使用key獲取) test7 = {1:'1',2:'2',3:'3',4:'4',5:'5'} res = test7.get(1) print(res,type(res)) ''''' test7結果: 1 <class 'str'> ''' #給dict添加數據(setdefault,不能用于更新數據) test8 = {1:'1',2:'2',3:'3',4:'4',5:'5'} test8.setdefault(6,'6') print(test8) ''''' test8結果: {1: '1', 2: '2', 3: '3', 4: '4', 5: '5', 6: '6'} '''
總結
以上所述是小編給大家介紹的python中的字典操作及字典函數,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。