📌  相关文章
📜  如何在python代码示例中访问类中的变量

📅  最后修改于: 2022-03-11 14:46:12.885000             🧑  作者: Mango

代码示例2
class Example(object):
    itsProblem = "problem"


theExample = Example()
print(theExample.itsProblem)
print (Example.itsProblem)