标签: python
我对python很新 我在python中有一个有构造函数的类。我想在构造函数本身中创建一些属性。 我尝试了所有明显的方法,但没有用,请帮忙:
class X: def __init__ (self, A): self.A = A my_dict = {} my_dict[A] = 1 object_X.my_dict ##Need a way to access the parameter
答案 0 :(得分:4)
使用
self.my_dict = {}
使my_dict属性为self。
my_dict
self
Python教程中的Class Objects部分对此内容进行了解释。