本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。
1、title函数
python中的字符串函数,返回“标题化”字符串,即单词的开头为大写,其余为小写
2、语法
string.title()
3、使用实例
str='tHewOrLDwidEWeb' str.title() str.title().strip()
输出
'TheWorldwideWeb' 'TheWorldwideWeb'
以上是python中title函数的介绍。如果需要,可以使用title函数将字符串转换为标题格式~