我的代码无法正常工作,但我不确定问题出在哪里

时间:2018-09-14 16:02:41

标签: python-3.x

print("The pile is actually a", (colored("goblin!", "green"), "it jumps at you, ready to fight."))

我不确定在此做什么,它说未定义“彩色”名称。

1 个答案:

答案 0 :(得分:2)

您需要在引号中加上“是”。您的函数正在接收字符串输入,您正在将其与未定义的变量yes(而不是字符串变量“ yes”)进行比较。