项目初次提交
This commit is contained in:
12
utils/random_utils.py
Normal file
12
utils/random_utils.py
Normal file
@ -0,0 +1,12 @@
|
||||
import random
|
||||
import string
|
||||
|
||||
|
||||
def random_str(length=10):
|
||||
"""随机生成自定义长度的小写字母"""
|
||||
letters = string.ascii_lowercase
|
||||
# 使用 random.choices 从 letters 中随机选择 length 个字母,返回一个列表
|
||||
random_letters = random.choices(letters, k=length)
|
||||
# 将列表中的字母连接成一个字符串
|
||||
return ''.join(random_letters)
|
||||
|
Reference in New Issue
Block a user