判断单词首字母是否大写
编写一个程序来判断一个句子是否为标题文本。
- 定义函数
is_title()
,参数为一个句子。 - 在函数内,如果句子中的每个单词都以大写字母开头,则返回
True
,否则返回False
。
import re #导入re模块 def is_title(sentence): patter='[A-Z]+[a-z]+$' #定义patter块 if re.search(patter,sentence): return True else: return False input_sentence = input() print(is_title(input_sentence))