【python数据类型】字典

一、增删改查:
【python字典:user{"name":"zhangfei", "age":25, "sex":"boy"}】
1.增:user["score"] = 85
2.删:del user["age"]
3.改:user["name"] = "libai" 直接用增加的方式可以覆盖掉前面的
4.查:user["age"]
二、常用的内建方法:
https://www.runoob.com/python3/python3-dictionary.html

你可能感兴趣的:(【python数据类型】字典)