摘要:
from abc import ABCMeta, abstractmethod class Card: def __init__(self): print('proxy interface') @abstractmethod def consume(self, account): pass @abstractmethod ... 阅读全文
摘要:
python基础-abstractmethod、__属性、property、setter、deleter、classmethod、staticmethod 阅读全文