I'm new to OOP concepts and I have trouble understanding the scope of this tricky code. Below is my code, I want to access SomeClass.someMethod() in SomeOtherClass.someOtherMethod(). Is this possible? If so how? Any pointers would be appreciated.
class SomeClass:
def method1(self):
print("Hi Hello")
def method2(self):
print("Hello how are you?")
def someMethod(name):
print(f"Hi {name}")
someMethod("Max")
class SomeOtherClass(SomeClass):
def someOtherMethod(self):
print(1+2)