mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-03-29 13:14:44 -05:00
10 lines
239 B
Python
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)])
|