Hi all -
Working on teaching myself some python and have some code I am working on, I am at a point where I would like to update a parent class variable from within a subclass, I am wondering what is the proper method for doing this. Something similiar to below. Thank you.
Class A(object):
def __init__(self):
self.a = 4
self.b = 6
class B(A):
def __init_(self):
#some code
def Action(self) #some sort of parameter if real program
#here is where i would want to update "a" from above