БГ
Size: a a a
БГ
AT
fr
R3
БГ
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))
File "/usr/lib/python3.5/random.py", line 272, in shuffle
x[i], x[j] = x[j], x[i]
TypeError: 'tuple' object does not support item assignment
БГ
FS
FS
R3
R3
S
SS
AT
AE
AE
print(reduce(lambda first, second: first + second, [num for num in range(100, 1001) if not num % 2]))
AE
AT
AT
AE