介绍生成随机字符串的几种方法:
import string
import random
number_of_strings = 5
length_of_string = 8
for x in range(number_of_strings):
print(''.join(random.choice(string.ascii_letters + string.digits) for _ in range(length_of_string)))
import string
import random
number_of_strings = 5
length_of_string = 8
for x in range(number_of_strings):
print(''.join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(length_of_string)))
import uuid
print(uuid.uuid4())
# 440a93fe-45d7-4ccc-a6ee-baf10ce7388a
'''
StringGenerator().render_list() 是在 Python 中生成多个随机字符串的简便方法。StringGenerator() 将正则表达式作为输入,它定义了用于生成随机字符串的字符。在 renderlist(len, unique=) 方法中,len 指定包含随机字符串的输出列表的长度,如果我们想要唯一的输出字符串,可以将 unique 关键字参数设置为 True。
要使用此方法,首先需要安装 StringGenerator 模块
'''
from strgen import StringGenerator
StringGenerator("[\l\d]{10}").render_list(3,unique=True)
# ['m98xQHMlBI', 'V4O8hPMWfh', 'cBJk3XcGny']