Files
nostrdvm/tutorials/helper.py
2024-09-17 15:40:31 +02:00

5 lines
147 B
Python

import random, string
def randomword(length):
letters = string.ascii_lowercase
return ''.join(random.choice(letters) for i in range(length))