18 lines
286 B
Python
18 lines
286 B
Python
|
class A:
|
||
|
def __bool__(self):
|
||
|
print('__bool__')
|
||
|
return True
|
||
|
def __len__(self):
|
||
|
print('__len__')
|
||
|
return 1
|
||
|
|
||
|
class B:
|
||
|
def __len__(self):
|
||
|
print('__len__')
|
||
|
return 0
|
||
|
|
||
|
print(bool(A()))
|
||
|
print(len(A()))
|
||
|
print(bool(B()))
|
||
|
print(len(B()))
|