发布网友 发布时间:2022-04-27 11:26
共4个回答
懂视网 时间:2022-04-18 08:21
字典是另一种可变容器模型,且可存储任意类型对象。字典的每个键值(key=>value)对用冒号(:)分割,每个对之间用逗号(,)分割,整个字典包括在花括号({})中 ,格式如下所示:
d = {key1 : value1, key2 : value2 }
键必须是唯一的,但值则不必。
值可以取任何数据类型,但键必须是不可变的,如字符串,数字或元组。
python3 中采用 in 方法
#判断字典中某个键是否存在 arr = {"int":"整数","float":"浮点","str":"字符串","list":"列表","tuple":"元组","dict":"字典","set":"集合"} #使用 in 方法 if "int" in arr: print("存在") if "float" in arr.keys(): print("存在") #判断键不存在 if "floats" not in arr: print("不存在") if "floats" not in arr: print("不存在")
python 3中不支持 has_key(),python2 中支持
#判断字典中某个键是否存在 arr = {"int":"整数","float":"浮点","str":"字符串","list":"列表","tuple":"元组","dict":"字典","set":"集合"} #使用自带的has_key() if(arr.has_key("int")): print("存在")
热心网友 时间:2022-04-18 05:29
1、说明
python中检测字典的键中是否含有某串字符,便利字典键值,再判断字符串是否在键值中即可。
2、示例代码:
# 定义一个字典
dic = {'1984/1/2': 123, '1984/1/3': 0, '1985/1/1': 156}
# 遍历字典键中是否包含1984
for key in dic:
if '1984' in key:
print('键值中包含字符串"1984"')
# 或者需要的其它操作
else:
print('键值中不包含字符串"1984"')
3、执行结果:
键值中包含字符串"1984"
键值中不包含字符串"1984"
键值中包含字符串"1984"
4、其它说明:
python使用for in直接操作字典就是遍历字典的键值,python使用in操作来判断字符串中是否包含子串最方便,要优于使用字符串的函数index或者find。
index函数在找不到子串时会报错,find函数会返回-1。
热心网友 时间:2022-04-18 06:47
d = {'1984/1/2': 123, '1984/1/3': 0, '1985/1/1': 156}
热心网友 时间:2022-04-18 08:22
DICT = {'1984/1/2':123, '1984/1/3':0, '1985/1/1':156}