R3
Size: a a a
R3
fr
EA
fr
БГ
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
py3
from random import shuffle
builtins = [int, float, range, set, list, dict]
shuffle(builtins)
int, float, range, set, list, dict = builtins
print(int())
print(dict())
print(set())
print(list())
Traceback (most recent call last):
File "source_file.py", line 6, in <module>
print(int())
TypeError: range expected 1 arguments, got 0
FS
R3
S
S
FS
FS
AT
БГ