title Python · 字符串方法
把每个单词的首字母变大写,其余变小写。
怎么用
字符串.title()
小例子
print('hello world'.title())
运行结果
Hello World
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条title Python · 字符串方法把每个单词的首字母变大写,其余变小写。
字符串.title()
print('hello world'.title())
Hello World
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条