python将字符串转换成单词首字母大写的标题格式

2022-03-11 00:00:00 字符串 单词 转换成
"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python将字符串转换成单词首字母大写的标题格式
"""
# 方法1:
a = 'hello world! how are you? welcome to www.pidancode.com'
b = ' '.join(i.capitalize() for i in a.split(' '))
print(b)

# 方法2:
import string
b = string.capwords(a, ' ')
print(b)

# 方法3:
b = a.title()
print(b)

相关文章