python Python:string,capwords:将String转换为Titlecase

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:string,capwords:将String转换为Titlecase相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3

import string as st


def titlecase(s):
    print(st.capwords(s, sep = ' '))

titlecase('hello world')
titlecase('2hello 3world')
titlecase('#hello &world')

以上是关于python Python:string,capwords:将String转换为Titlecase的主要内容,如果未能解决你的问题,请参考以下文章

r“string”b“string”u“string”Python 2/3比较

python Python:string,capwords:将String转换为Titlecase

python怎么将numpy类转为string类

python中string.casefold和string.lower区别

python string.md

Python标准库--string模块