python将字符串转换成单词首字母大写的标题格式
方法1
a = 'hello world! how are you?' b = ' '.join(i.capitalize() for i in a.split(' '))
方法2
import string b = string.capwords(a, ' ')
方法3
b = a.title()
python将字符串转换成单词首字母大写的标题格式
方法1
a = 'hello world! how are you?' b = ' '.join(i.capitalize() for i in a.split(' '))
方法2
import string b = string.capwords(a, ' ')
方法3
b = a.title()