Как я могу сделать наследование с тремя уровнями (отец, ребенок, внук)
#python #inheritance #python-2.x #python #наследование #python-2.x Вопрос: У меня есть from abc import ABCMeta, abstractmethod class Operation(object): __metaclass__ = ABCMeta def __init__(self, a, use_sftp): print "OPERATION" self.a = a self.use_sftp…