mirror of
https://github.com/Xevion/power-math.git
synced 2025-12-06 13:15:54 -06:00
7 lines
127 B
Python
7 lines
127 B
Python
import random
|
|
import string
|
|
|
|
|
|
def generate_id(length: int):
|
|
return ''.join(random.choices(string.ascii_letters, k=length))
|