在类中搜索Python中字典的值

时间:2018-02-27 01:32:25

标签: python dictionary search key

这是一个非常基本的问题,但我不确定我的语法是否就在这里。

在我的班上,我有以下内容:

class Example:
    def method(self):
      self.rule = {}
      ... #code to fill dictionary here
      x = 'String'
      #want to search values of the dictionary for x
      if x in self.rule.values:
        return True

由于某些原因,这不是为我编译,我认为这是由于self.rule.values。在这种情况下搜索字典self.rule的值的正确方法是什么?

0 个答案:

没有答案