python核心编程第六章练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python核心编程第六章练习相关的知识,希望对你有一定的参考价值。

字符串的一些方法:

string.split(str)  以str 为分隔符(默认为空隔)切片string,如果num有指定值,则仅分隔num个子字符串.

string.count(str)  计算str在string中出现的次数。

string.find(str)  检测str是否存在string中,存在返回索引值,不存在则返回-1.

 string.casefold()  将string所有的字符改为小写

string.capitalize(str)  将string的第一个字符改为大写

 

>>> c = ‘Hello world!‘
>>> c.split()
[‘Hello‘, ‘world!‘]
>>> c.split(‘o‘)
[‘Hell‘, ‘ w‘, ‘rld!‘]

>>> c.casefold()

‘hello world!‘
>>> c.capitalize()
‘Hello world!‘
>>> c.count(‘l‘)
3
>>> c.find(‘l‘)
2

 



以上是关于python核心编程第六章练习的主要内容,如果未能解决你的问题,请参考以下文章

python 核心编程 第六章习题

Python核心编程(第二版)第六章部分习题代码

《python核心教程2》第六章 练习

第六章编程练习4

第六章编程练习

第六章编程练习6