说到字符串的基本操作,可以解决两个基本问题:现在有两个字符串,一个是hello,一个是world。
1、title()
以首字母大写的方式显示每个单词,即将每个单词的首字母都改为大写。
>>>name='solocoder' >>>name.title() 'SoloCoder'
2、upper()、lower()
将字符串改为全部大写或全部小写。
>>>name 'solocoder' >>>name.upper() 'SOLOCODER' >>>name.lower() 'solocoder' >>>name 'solocoder'
以上就是python字符串的简单运算,希望对大家有所帮助。更多Python学习指路:Python基础教程