class Some_class(Name_of_super_class):
static_field = 0.0
__init__() :
self.variable_belonging_to_instance = 1.0
print("object of Some_class instantiated")
@staticmethod
def static_method() :
print("static method called")
static_return = 1.0
return static_return