class Run(object):
def run(self):
print('run, save yourself')
Run().run()
it prints out
'run, save yourself'
How can we run class and its functions without defining object to it?
We have to assign an object to the class and then run it like
r = Run()
r.run()
Does python automatically assigns the abject to Class and then runs it ?