/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/code-407-113-015/main.py
12 строк
387 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class SimplePrinter(IMultiFunctionDevice): def print(self, document): print(f"Printing: {document}") def scan(self, document): raise NotImplementedError("This device cannot scan") def fax(self, document): raise NotImplementedError("This device cannot fax") def copy(self, document): raise NotImplementedError("This device cannot copy")