gpt4 book ai didi

python - 有什么方法可以返回生成的随机辅音或元音并将其输出为长度为 8 的字符串吗?

转载 作者:行者123 更新时间:2023-12-01 07:10:28 25 4
gpt4 key购买 nike

我对计算机科学完全陌生,不确定如何收集结果并将其作为 8 个字符的字符串返回给用户。

这是我编写的代码,根据用户的要求为用户提供 8 个随机辅音或元音。

count = 2
while count < 10:
char = input("v or c")
if char == "v":
vow = ['a', 'e', 'i', 'o', 'u']
v = random.choice(vow)
print(v)
count = count + 1

if char == "c":
con = ['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's',
't', 'v', 'w', 'x',
'y', 'z']
c = random.choice(con)
print(c)
count = count + 1`

最佳答案

只需收集列表或字符串中的随机选择:

vowels = 'aeiou'  # random.choice can choose from any type of sequence
consonants = 'bcdfghjklmnpqrstvwxyz'
chars = [] # collects the choices
for _ in range(8): # for loop if iteration count is known beforehand
select_char = input("Please enter either v for a vowel or c for a consonant: ")
if select_char == "v":
chars.append(random.choice(vowels))
else:
chars.append(random.choice(consonants))

print(''.join(chars))

关于python - 有什么方法可以返回生成的随机辅音或元音并将其输出为长度为 8 的字符串吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58247564/

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