码迷,mamicode.com
首页 > 其他好文 > 详细

给定一个英文句子(一个只有字母的字符串),将句中所有单词变为有且只有首字母大写

时间:2016-11-22 22:39:00      阅读:769      评论:0      收藏:0      [点我收藏+]

标签:min   python   systems   effective   div   字符   highlight   let   nbsp   

def cap_string(sentence):
    sentence=‘ ‘.join([i.title() for i in sentence.split()])
    return sentence

 

s=‘‘‘Python is a programming language that lets you work quickly and integrate systems more effectively‘‘‘     
print cap_string(s)

输出:

Python Is A Programming Language That Lets You Work Quickly And Integrate Systems More Effectively

给定一个英文句子(一个只有字母的字符串),将句中所有单词变为有且只有首字母大写

标签:min   python   systems   effective   div   字符   highlight   let   nbsp   

原文地址:http://www.cnblogs.com/laresh/p/6091288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!