Using classes
>>> class AClass:
...
def amethod(
self
):
...
print ‘Hi there!’
...
>>> a = AClass()
>>> a
>>>
a.amethod()
Hi there!