Python3 title() 方法

Python3 字符串


描述

Python title() 方法返回"标题化"的字符串,就是说所有单词的首个字母转化为大写,其余字母均为小写(见 istitle())。

语法

title()方法语法:

str.title();

参数

  • NA。

返回值

返回"标题化"的字符串,就是说所有单词的首字母都转化为大写。

实例

以下实例展示了 title()函数的使用方法:

Python3 实例
#!/usr/bin/python3

str = "this is string example from itzixishi....wow!!!"
print (str.title())

以上实例输出结果如下:

This Is String Example From itzixishi....Wow!!!

请注意,非字母后的第一个字母将转换为大写字母:

Python3 实例
#!/usr/bin/python3

txt = "hello b2b2b2 and 3g3g3g"
x = txt.title()
print(x)

输出结果为:

Hello B2B2B2 And 3G3G3G

Python3 字符串

本教程仅供参考学习,如用于商业带来的问题,本站概不负责。
关注公众号
关注公众号

©2020 IT自习室京ICP备20010815号