字符串:系统内置方法
Posted xiangdongsheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串:系统内置方法相关的知识,希望对你有一定的参考价值。
1.不使用系统内置方法操作字符串
>>> str = ‘程序员‘ >>> str1 = str[:1] +‘(加)‘ + str[1:2] + ‘(班)‘ + str[2:] >>> str1 ‘程(加)序(班)员‘
2.内置函数
capitalize() 转换首字母为大写
>>> str = ‘python‘ >>> str.capitalize() ‘Python‘ >>>
casefold() 转换所有字符为小写
>>> str.casefold() ‘python‘ >>>
count(sub[,start[,end]]) 返回子串sub在字符串中出现的次数,start和end指定范围
>>> str = ‘PYTHON‘ >>> str.count(‘O‘) 1
区分大小写
以上是关于字符串:系统内置方法的主要内容,如果未能解决你的问题,请参考以下文章