是否可以将空字典添加到 python class?

Is it possible to add an empty dictionary to a python class?

是否可以将带有自参数的空字典添加到 class 中,以便我稍后可以使用定义的方法向其中添加元素?

添加空字典就像添加任何其他变量一样:

class SomeClass:
    def __init__(self):
        self.empty_dict = {}