mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-21 04:42:56 +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))
|