中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

使用python字典添加數(shù)據(jù)的示例-創(chuàng)新互聯(lián)

這篇文章將為大家詳細講解有關使用python字典添加數(shù)據(jù)的示例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)服務項目包括衡水網(wǎng)站建設、衡水網(wǎng)站制作、衡水網(wǎng)頁制作以及衡水網(wǎng)絡營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網(wǎng)行業(yè)的解決方案,衡水網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務的客戶以成都為中心已經(jīng)輻射到衡水省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!

首先新建一個python文件命名為py3_dict.py,在這個文件中進行字符串操作代碼編寫(如下為代碼,文后有顯示運行效果):

#dictionaries 是一個Key-Value對形式的集合
#定義一個字典
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
print(student)
print(student['name'])
print(student['course'])
#字典的key和value可定義為immutable data type
#例如:定義key為1
student = {1:'yale','age':25,'course':['數(shù)學','計算機']}
print(student[1])
#訪問一個不存在的key
#會出現(xiàn)異常
#KeyError: 'phone'
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
#print(student['phone'])
#有時候我們希望不存在的key
#可以返回None或者一個默認值
#用如下方式實現(xiàn):
print(student.get('phone'))#None
print(student.get('phone','未找到'))#返回默認值:未找到
#往dict字典中添加數(shù)據(jù)
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
student['phone']='010-55555555'
print(student.get('phone','未找到'))#010-55555555
#改變已存在的key對應的值
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
student['name']='andy'
print(student)
#使用update() 改變字典中的多個值
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
student.update({'name':'andy','age':26,'phone':'12345678'})
print(student)
#刪除一個key
#使用del 關鍵字
del student['phone']
print(student)
#或者使用之前提到過的pop()方法
#刪除數(shù)據(jù)
age = student.pop('age')
print(age)#26
print(student)
#使用len()查看字典中一共有多少key
student = {'name':'yale','age':25,'course':['數(shù)學','計算機']}
print(len(student))#3
#查看所有的key
print(student.keys())#dict_keys(['name', 'age', 'course'])
#查看所有的value
print(student.values())#dict_values(['yale', 25, ['數(shù)學', '計算機']])
#查看所有的key和value
#得到一對一對的key-value
#dict_items([('name', 'yale'), ('age', 25), ('course', ['數(shù)學', '計算機'])])
print(student.items())
#循環(huán)字典
#像list的方式循環(huán),打印的是key值
#name
#age
#course
for key in student:
 print(key)
#所以我們用items()方法循環(huán)數(shù)據(jù):
for key,value in student.items():
 print(key,value)
#結(jié)果:
#name yale
#age 25
#course ['數(shù)學', '計算機']

以上代碼運行效果:

{'name': 'yale', 'age': 25, 'course': ['數(shù)學', '計算機']}
yale
['數(shù)學', '計算機']
yale
None
未找到
010-55555555
{'name': 'andy', 'age': 25, 'course': ['數(shù)學', '計算機']}
{'name': 'andy', 'age': 26, 'course': ['數(shù)學', '計算機'], 'phone': '12345678'}
{'name': 'andy', 'age': 26, 'course': ['數(shù)學', '計算機']}
26
{'name': 'andy', 'course': ['數(shù)學', '計算機']}
3
dict_keys(['name', 'age', 'course'])
dict_values(['yale', 25, ['數(shù)學', '計算機']])
dict_items([('name', 'yale'), ('age', 25), ('course', ['數(shù)學', '計算機'])])
name
age
course
name yale
age 25
course ['數(shù)學', '計算機']

關于使用python字典添加數(shù)據(jù)的示例就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

本文題目:使用python字典添加數(shù)據(jù)的示例-創(chuàng)新互聯(lián)
當前網(wǎng)址:http://www.rwnh.cn/article22/cegdcc.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供關鍵詞優(yōu)化移動網(wǎng)站建設、服務器托管企業(yè)建站、網(wǎng)站排名、小程序開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁設計
南川市| 金华市| 宁津县| 万州区| 永顺县| 弥勒县| 兴海县| 西畴县| 社旗县| 土默特左旗| 若羌县| 松江区| 乌海市| 崇仁县| 黔南| 临沧市| 东城区| 六盘水市| 开封县| 都兰县| 东平县| 余干县| 承德市| 黎平县| 榆中县| 中宁县| 吉林市| 乌拉特前旗| 扎赉特旗| 滁州市| 乐都县| 阿合奇县| 武汉市| 漾濞| 大英县| 保靖县| 开原市| 商城县| 桦甸市| 泽库县| 宁武县|