For a recursive function we can do:
def f(i): if i<0: return print i f(i-1) f(10)
However is there a way to do the following thin
Most code in the class will be inside method definitions, in which case you can simply use the name A.
A