Код: Выделить всё
class SomeClass:
def __init__(self, argument):
self.argument = argument
def some_function(self):
''' Do something with argument and return the result '''
...
return something
Код: Выделить всё
a = SomeClass(an_argument).some_function()
Подробнее здесь: https://stackoverflow.com/questions/792 ... om-a-class
Мобильная версия