SolarEnergy/python_device/src/utils.py

5 lines
153 B
Python
Raw Normal View History

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