这是一个非常基本的问题,但我不确定我的语法是否就在这里。
在我的班上,我有以下内容:
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的值的正确方法是什么?