cara mengakses variabel dari kelas dalam python
class Example(object):
def __init__(self):
self.itsProblem = "problem"
theExample = Example()
print(theExample.itsProblem)
Splendid Scarab