SolarEnergy/python_device/src/utils.py

9 lines
169 B
Python
Raw Normal View History

2024-06-30 08:14:42 +00:00
import string
import random
2024-07-01 19:10:45 +00:00
2024-06-30 08:14:42 +00:00
def rand_str(len: int) -> str:
2024-07-01 19:10:45 +00:00
return "".join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(len)
)