🚲U
Size: a a a
🚲U
Х
Х
type(list) # type
isinstance(list, type) # True
class type(object):
def __call__(cls, *args, **kwargs):
self = cls.__new__(cls, *args, **kwargs)
if type(self) is cls:
self.__init__(*args, **kwargs)
return self
Х
Д🥶
type(list) # type
isinstance(list, type) # True
class type(object):
def __call__(cls, *args, **kwargs):
self = cls.__new__(cls, *args, **kwargs)
if type(self) is cls:
self.__init__(*args, **kwargs)
return self
🚲U