gpt4 book ai didi

python - 如何生成更多字符?

转载 作者:行者123 更新时间:2023-12-05 08:38:15 24 4
gpt4 key购买 nike

我正在制作一个基于流行游戏 Among US 的代码生成器,它有 4 个字母的游戏代码。我构建这个程序来为你生成一个,看看它是否真的存在,但不是四个字母,而是一个生成了四次。

我该如何解决这个问题?提前致谢!

import random
chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
quantity = int(input('How many codes do you want? '))

def create_code():
for c in range(4):
code = ''
code += random.choice(chars)

return code

for i in range(0, quantity):
print('Your code is', create_code())

最佳答案

这是另一种方法,它使用 .choices()(复数)

import random
chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
list_of_chars = random.choices(chars, k=4)
print(''.join(list_of_chars))

关于python - 如何生成更多字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63748499/

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