当前位置: 首页 > 图灵资讯 > 行业资讯> python字符的获取方式

python字符的获取方式

来源:图灵python
时间: 2024-07-16 09:46:47

1、通过索引获取字符

>>>string=‘happy’
>>>string[2]
’p’

2、索引通过子串获得

所谓子串,是从字符串中截取的一部分,可以是一个字符、一部分字符、所有字符或空字符串,如 'a'、'ppy'、'happy'、'' 都是 ‘happy’ 子串。查找子串时,返回子串第一个字符的索引。

>>>string=‘happy’
>>>string.index(‘p’)
2
>>>string=‘happy’
>>>string.index(‘app’)
1

3、检查字符串中是否存在字符串

在字符串中检查字符是否存在,需要帮助 Python 的关键字 in,如下:

>>>string=‘happy’
>>>‘a’instring
True
>>>‘z’instring
False

4、字符串中统计字符的个数

>>>string=‘happy’
>>>string.count(‘p’)
2

以上是python字符的获取方式,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。