1
0
mirror of synced 2024-11-15 02:17:36 +01:00
bemaniutils/bemani/client/common.py
2019-12-08 21:43:49 +00:00

10 lines
239 B
Python

import random
def random_hex_string(length: int, caps: bool=False) -> str:
if caps:
string = '0123456789ABCDEF'
else:
string = '0123456789abcdef'
return ''.join([random.choice(string) for x in range(length)])