type(object)
がカスタム文字列を報告するようにCLASS OBJECTを変更する方法はありますか?'type()'レポートをオーバーライドする方法
class MyClass(object):
def __init__(self, t):
if 'detector' in t:
my_type_string = "I am set as a detector."
else:
my_type_string = "I am set as a broadcaster."
>>> o = MyClass('detector')
>>> type(o)
I am set as a detector.
'タイプを返すことができますので、
を(..) 'does not **は文字列を返します** –