如何搜索字典值是否包含Python的某些字符串
作者:互联网
我有一个带键值对的字典.我的值包含字符串.如何搜索字典中是否存在特定字符串并返回与包含该值的键对应的键.
假设我想搜索字符串值中是否存在字符串’Mary’并获取包含它的键.这是我尝试过的,但显然它不会那样工作.
#Just an example how the dictionary may look like
myDict = {'age': ['12'], 'address': ['34 Main Street, 212 First Avenue'],
'firstName': ['Alan', 'Mary-Ann'], 'lastName': ['Stone', 'Lee']}
#Checking if string 'Mary' exists in dictionary value
print 'Mary' in myDict.values()
有没有更好的方法来执行此操作,因为我可能想要查找存储值的子字符串(‘Mary’是值’Mary-Ann’的子字符串).
解决方法:
你可以这样做:
#Just an example how the dictionary may look like
myDict = {'age': ['12'], 'address': ['34 Main Street, 212 First Avenue'],
'firstName': ['Alan', 'Mary-Ann'], 'lastName': ['Stone', 'Lee']}
def search(values, searchFor):
for k in values:
for v in values[k]:
if searchFor in v:
return k
return None
#Checking if string 'Mary' exists in dictionary value
print search(myDict, 'Mary') #prints firstName
标签:python,string,dictionary,key-value 来源: https://codeday.me/bug/20190930/1835042.html