mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-06-06 04:09:12 +02:00
5 lines
147 B
Python
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)) |