每天一点Python——day42

#第四十二天

每天一点Python——day42_第1张图片

#判断字典中关键字是否存在
'''
in
存在返回Ture;反之为False
not in
不存在返回True;反之为False
'''
#例:
b={'师傅':1000,'师祖':10000,'徒弟':500}
print('师傅'in b)
print('师傅' not in b)
#字典元素的删除
'''
del 字典名['健名']
'''
#例
a={'张三':100,'李四':10,'王五':50}
del a['张三']#删除指定的键值对,注意:[一删删一对]
print(a)
a.clear()#清空字典所有元素
print(a)#输出空字典
#字典元素的新增
'''
字典名['健名']=键值#新增陈六
'''#例
c={'张三':100,'李四':10,'王五':50}
print(c)#查看原字典
c['陈六']=90#新增陈六元素
print(c)#查看新增字典
c['陈六']=100#修改陈六元素值为100,直接替换就行
print(c)#发现修改实现了

 

你可能感兴趣的:(每天一点Python,python)