UV
Size: a a a
UV
A
py3
from random import choice
c = choice(["какаха","pynoob"])
print(f"Serious is {c}")
Serious is pynoob
A
КА
from PIL.ImageColor import colormap
colors = list(colormap.keys())
from random import choice
choice(colors)
blanchedalmond
КА
КА
from PIL.ImageColor import colormap
colors = list(colormap.items())
from random import choice
choice(colors)
('skyblue', '#87ceeb')
UV
color = random.randint(0, 0xFFFFFF)
КА
import random
random.randint(0, 0xFFFFFF)
10231623
UV
КА
from string import hexdigits
from random import choice
"#"+"".join([choice(list(hexdigits)) for _ in range(6)])
#C33AE1
UV
python
import random
print('#%06x' % random.randint(0, 0xFFFFFF))
#775e20
python3 assumed, other valid option is python2, you can be more specific next time.
S
py2
import random
print('#%06x' % random.randint(0, 0xFFFFFF))
#db6afd
ЕМ
КА
КА
del users_data[id]
UV
КА
КА