将句子的第二个词与变量相关联。 (Python)

Associating the second word of a sentence to a variable. (Python)

我目前正在尝试执行此操作,但我的 class 书没有显示任何与布尔变量相关的内容或与此问题相关的任何内容。我一直在网上寻找一段时间,对于根据单位应该简单的东西来说,一切都太复杂了。如果解决方案发布在这里,输入什么来找到它?也许我需要改一下我的问题。

https://i.stack.imgur.com/RMSEx.png

def getSecondWord(sentence):
    res = sentence.split(' ')[1]
    if res.endswith('.'):
        return res[:-1]
    else:
        return res

inputSentence = 'broccoli is delicious'
secondWord = getSecondWord(inputSentence)

print("second word is:", secondWord)