我正在尝试编写一个函数来执行以下操作:
编写一个函数isRed(),它接受一个字符串参数,并在名为text的字符串中查找单词'red'的存在。
如果找到,则返回布尔值True,否则返回False。
使用文本中的值输出调用函数的结果。
这就是我所拥有的:
def isRed(text):
if text.find(red):
return (True)
else:
return (False)
return red
我收到此错误:
Program Failed for Input: ""
Expected Output: False
Your Program Output:
我是新手,并且有点混淆为什么这不起作用。
答案 0 :(得分:2)
你想要
def is_red(text):
if "red" in text:
return True
else:
return False
print str(is_red(text))