- 定义函数
is_title()
,参数为一个句子。 - 在函数内,如果句子中的每个单词都以大写字母开头,则返回
True
,否则返回False
。
def is_title(sentence):
return sentence.istitle()
# 从用户处获取输入
input_sentence = input()
# 调用函数
print(is_title(input_sentence))
is_title()
,参数为一个句子。True
,否则返回False
。def is_title(sentence):
return sentence.istitle()
# 从用户处获取输入
input_sentence = input()
# 调用函数
print(is_title(input_sentence))