Python String Methods

Posted njuptlwh

tags:

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

str.capitalize()  # 将字符串的第一个字母变成大写,其他字母变小写。对于 8 位字节编码需要根据本地环境
>>> hello.capitalize()
Hello
>>> hEllo.capitalize()
Hello
string.center(width[, fillchar]) # 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格
>>> hello.center(10,0)
00hello000
>>> hello.center(10)
  hello   
string.count(sub, start= 0,end=len(string)) #方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置
>>> hello world.count(o)
2
>>> hello world.count(o,4,8)
2
>>> hello world.count(o,4,7)
1

 

以上是关于Python String Methods的主要内容,如果未能解决你的问题,请参考以下文章

Python String Methods 3

[Python] Find available methods and help in REPL

wepy怎么在methods中调用methods的方法

CSP核心代码片段记录

Python 教程——String的内置方法

A Guide to Python's Magic Methods