Skip to content
On this page

capitalize

将字符串的第一个字符转换为大写,其余字符转换为小写

python
from usepy import capitalize

参数

  • string: 要转换的字符串

例子

python
>>> capitalize('fred')
'Fred'
>>> capitalize('FRED')
'Fred'

Released under the MIT License.