使用功能
def make_cap(sentence):
return sentence.title()
试用
make_cap("hello world")
'Hello World'
# it workd but when I have world like "aren't" and 'isn't". how to write function for that
a = "I haven't worked hard"
make_cap(a)
"This Isn'T A Right Thing" # it's wrong I am aware of \ for isn\'t but confused how to include it in function
3条答案
按热度按时间kpbwa7wx1#
这应该行得通:
它手动地用空格(而不是任何其他字符)分隔单词,然后将每个标记的第一个字母大写。它通过分隔第一个字母,将其大写,然后连接单词的其余部分来实现这一点。我使用了一个三元
if
语句,以避免在单词只有一个字母长时使用IndexError
。zaqlnxep2#
使用字符串库中的
.capwords()
。演示:https://repl.it/repls/BlankMysteriousMenus
5t7ly7z53#
我发现这种方法对于将所有不同类型的文本格式化为标题非常有帮助。