Python:匹配字典值中的单词

时间:2016-02-01 01:44:34

标签: python-2.7 dictionary

有没有办法搜索字典值以匹配python 2.7中的特定单词。我尝试使用any()命令,但这并没有返回任何有用的东西,我是否在正确的轨道上?

dict = {'1' : 'see john run'}
test = 'run'

if any (x in test for x in Dict.values()):
    print "true"

2 个答案:

答案 0 :(得分:1)

试试以下内容:

print test in mydict.values()[0].split()
>>> mydict = {'1' : 'see john run'}
>>> test = 'run'
>>> print test in mydict.values()[0].split()
True
>>> 

此外,我建议将变量名dict更改为其他内容(我使用mydict),因为dict会影响内置内容。

答案 1 :(得分:1)

你有正确的想法,但你需要在in测试

中切换参数
data = {'1' : 'see john run'}
test = 'run'

if any(test in x for x in data.values()):
    print "true"