тема?
Генератор сида для random.seed()
def get_seed():
q = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(15))
for i in range(0, 10):
q = str(hashlib.md5(q.encode('utf-8')).hexdigest())
q = "".join(i for i in q if i not in string.ascii_lowercase)
return int(q)
это же детерменистическая функция?
random.seed(a=None, version=2) Initialize the random number generator. If a is omitted or None, the current system time is used. If randomness sources are provided by the operating system, they are used instead of the system time (see the os.urandom() function for details on availability).
чзх?
нужно написать генератор кода для генерации сида, тогда будет хорошо
Обсуждают сегодня