都是防止程序出错用的:
用in(not in)判断是否key、value在什么中
样例:x = x1 in x2.keys
添加值:x = x1.setdefault(x1,x2)
都是防止程序出错用的:
用in(not in)判断是否key、value在什么中
样例:x = x1 in x2.keys
添加值:x = x1.setdefault(x1,x2)
判断键是否在字典里:
res = 'gender' in stu1.keys()
print (res)
判断值是否在字典里:
res = 'siki' in stu1.values()
print (res)
如果是siki' in stu1,则默认是判断是否在键里
设置键的默认值:
stu1.setdefault('name','micheal')