Python 字符串 title() 方法
Python基础 2022-06-06 15:22:40小码哥的IT人生shichen
Python 字符串 title() 方法
实例
将每个单词的首字母大写:
txt = "Welcome to my world"
x = txt.title()
print(x)
完整实例:
txt = "Welcome to my world"
x = txt.title()
print(x)
定义和用法
title() 方法返回一个字符串,其中每个单词的第一个字符均为大写。比如标题。
如果单词包含数字或符号,则其后的第一个字母将转换为大写字母。
语法
string.title()
参数值
无参数.
更多实例
示例代码:
将每个单词的首字母大写:
txt = "Welcome to my 2nd world"
x = txt.title()
print(x)
完整实例:
txt = "Welcome to my 2nd world"
x = txt.title()
print(x)
示例代码:
请注意,非字母字母之后的第一个字母将转换为大写字母:
txt = "hello d2d2d2 and 5g5g5g"
x = txt.title()
print(x)
完整实例:
txt = "hello d2d2d2 and 5g5g5g"
x = txt.title()
print(x)