要求:
编写一个程序来判断一个句子是否为标题文本。
- 定义函数
is_title()
,参数为一个句子。 - 在函数内,如果句子中的每个单词都以大写字母开头,则返回
True
,否则返回False
。
示例输入
The Quick Brown Fox
示例输出
True
代码:
def is_title(sentence):
words = sentence.split()
for word in words:
if word[0].islower(): # 检查每个单词的首字母是否为大写
return 'False'
return 'True'
# 从用户处获取输入
input_sentence = input()
# 调用函数
print(is_title(input_sentence))