mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-02 05:05:43 +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))
|