БГ
Size: a a a
БГ
I

БГ
k
MN
k
b
БГ
py3
from random import choice
from string import ascii_lowercase as symbols
def ranchar():
return choice(symbols)
def ranstr(size):
return "".join(ranchar() for _ in range(size))
print(ranstr(10))
ogmdfgorux
R3
k
R3
py3
from random import choice
from string import ascii_lowercase as symbols
def ranchar():
return choice(symbols)
def ranstr(size):
return "".join(ranchar() for _ in range(size))
print(ranstr(10))
ogmdfgorux
b
БГ
R3
py3
from random import choices
from string import ascii_lowercase
def randstring(length = 16):
return "".join(choices(ascii_lowercase, k=length))
print(randstring())
cxxwzqcmdwmytaly
R3
БГ
py3
from random import choices
from string import ascii_lowercase
def randstring(length = 16):
return "".join(choices(ascii_lowercase, k=length))
print(randstring())
cxxwzqcmdwmytaly
IA

R3