S

Size: a a a
S

AT

FS
S
FS
R3
py3
from random import choice
for cls in object.__subclasses__():
cls = choice(object.__subclasses__())
print(int())
print(dict())
print(set())
print(list())
0
{}
set()
[]
БГ
AT
FS
AT
R3
AT
AT
S
БГ
py3
from random import shuffle
int, float, range, set, list, dict = shuffle([int, float, range, set, list, dict])
print(int())
print(dict())
print(set())
print(list())
Traceback (most recent call last):
File "source_file.py", line 2, in <module>
int, float, range, set, list, dict = shuffle([int, float, range, set, list, dict])
TypeError: 'NoneType' object is not iterable
S
БГ
FS
R3
S