摘要:
# 嵌套 dic = { 'name':'汪峰', 'age':48, 'wife':[{'name':'国际章','age':38}], 'children':{'girl_first':'小苹果','girl_second':'小怡','girl_three':'顶顶'} } # 1. 获取汪峰 阅读全文
摘要:
# (1)字典的增 # 通过键值对直接增加 # 有键值则覆盖,如果没有键值则添加 dic = {'ni':1,'woazia':2} dic['hello'] = 6 # 没有'hello'这个键,就增加键值对 print(dic) # {'ni': 1, 'woazia': 2, 'hello': 阅读全文
摘要:
#字典 的有效性 {key:value} key hashable 可哈希的 # 不可变 str int tuple bool 合法运用到字典 key # 可变 list dict set 不合法运用到字典 key # hashable 不可变 dic = {'n':1} dic = {1:2} d 阅读全文