📜  python 标题案例 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:07.507000             🧑  作者: Mango

代码示例1
string = 'this will be title case'
print(string.title())
#output: 'This Will Be Title Case'