mirror of
https://github.com/aljazceru/nostrdvm.git
synced 2026-02-02 21:04:27 +01: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)) |