Files
2019-07-08 18:05:36 +03:00

13 lines
160 B
Python

class MyClass:
def another(self):
pass
inst = MyClass()
inst.another()
inst.another()
my_class = MyClass()
my_class.another()
my_class.another()