Say, the code is
class A():
@staticmethod
getB():
return ['B', 'BB']
list_B = A.getB()
How would I access function B() within the class that's outside of any function? In the code snippet, A
isn't being recognized as a valid variable/class.