mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-01 07:10:55 +00:00
5 lines
120 B
Python
5 lines
120 B
Python
import random, string
|
|
|
|
def randomword(length):
|
|
return ''.join(random.choice(string.lowercase) for i in range(length))
|