gpt4 book ai didi

python-3.x - 当执行下面的代码时,我收到消息错误str连接

转载 作者:行者123 更新时间:2023-12-03 07:54:37 25 4
gpt4 key购买 nike

大家好!我开始学习编程。当下面的执行代码时,我收到消息错误str连接。

import random

word_list = ["ababababababab", "baloon", "banana"]

chosen_word = random.choice(word_list)

print(chosen_word)

guess = input("Guess the word, type one letter: \n").lower()

i = 0
while (i < len(chosen_word)):
for i in chosen_word:
if i == guess:
print(guess)
i += 1
消息错误:
TypeError:只能将str(而不是“int”)连接到str

最佳答案

j = ""
for j in chosen_word:
if j == guess:
print(guess)
使用一个循环。

关于python-3.x - 当执行下面的代码时,我收到消息错误str连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65525167/

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