# 字典是key-value(键 - 值) 对形式,没有顺序,通过键取出值
adict = { 'name':'bob','age':30}print(len(adict))print('bob' in adict) # Falseprint('name' in adict) # Trueprint(adict)adict['email'] = 'aaa@qq.com'adict['age'] = 25 # 字典中已有key,修改对应的value。print(adict)
输出:
本文共 303 字,大约阅读时间需要 1 分钟。
# 字典是key-value(键 - 值) 对形式,没有顺序,通过键取出值
adict = { 'name':'bob','age':30}print(len(adict))print('bob' in adict) # Falseprint('name' in adict) # Trueprint(adict)adict['email'] = 'aaa@qq.com'adict['age'] = 25 # 字典中已有key,修改对应的value。print(adict)
输出:
转载于:https://www.cnblogs.com/hejianping/p/10844999.html