Question: aaa.b() causes NameError name 'a' is not defined but I'd like to know how to operate b() in the class. This is working but above

aaa.b() causes NameError "name 'a' is not defined" but I'd like to know how to operate b() in the class.
This is working but above b() is not.
class A: def a(self) return 1 def b(self): return a() aaaACO
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
