String的方法capitalize
Posted 吾生也有涯,而知也无涯。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String的方法capitalize相关的知识,希望对你有一定的参考价值。
官方解释:Return a copy of the string with its first character capitalized and the rest lowercased.(返回字符串的副本,其首字符大写,其余字符小写。)
- 使用方法:
>>> s1 = ‘python最牛掰‘
>>> ret1 = s1.capitalize()
>>> print(ret1)
Python最牛掰
以上是关于String的方法capitalize的主要内容,如果未能解决你的问题,请参考以下文章