gpt4 book ai didi

python - 如何从Python中的一组字符生成随机单词

转载 作者:行者123 更新时间:2023-12-01 09:02:41 24 4
gpt4 key购买 nike

我希望从 python 中的一组字符生成一个随机单词列表。问题在这里:-

它的生成方式如下:-啊啊啊啊啊啊啊啊啊...... 等等

我想添加随机函数,以便它生成与字母表随机化相同的长度,例如:-a15beff45acd9bbac0...... 等等

看起来长度相同但随机。

如何添加随机函数?

#Code
import itertools

chrs = 'abcdef0123456789' # Change your required characters here
n = 6 # Change your word length here

for xs in itertools.product(chrs, repeat=n):
print(''.join(xs))
<小时/>

请帮我解决一下。

最佳答案

itertools.product 将生成所有可能的值。相反,您想要的是从 chrs 中选取 n 个随机字符并将它们连接起来:

import random

chrs = 'abcdef0123456789' # Change your required characters here
n = 6 # Change your word length here

print(''.join(random.choices(chrs, k=5)))

关于python - 如何从Python中的一组字符生成随机单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52353686/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com