Python3基础 字符串 find与index 检测参数字符串是否存在字符串中,有则范围第一个索引值

镇场诗:
    诚听如来语,顿舍世间名与利。愿做地藏徒,广演是经阎浮提。
    愿尽吾所学,成就一良心博客。愿诸后来人,重现智慧清净体。
——————————————————————————————————————————

code:

myStr=‘HELLOHELLO‘
resOfFindLLO=myStr.find(‘LLO‘)  #存在,则返回首次出现的,第一个L的索引值
resOfIndexLLO=myStr.index(‘LLO‘) #存在,则返回首次出现的,第一个L的索引值

print(resOfFindLLO)
print(resOfIndexLLO)

resFind=myStr.find(‘X‘) #找不到,则返回-1
print(resFind)

resIndex=myStr.index(‘X‘) #找不到,则抛异常

result:

============= RESTART: C:/Users/Administrator/Desktop/mytest4.py =============
2
2
-1
Traceback (most recent call last):
  File "C:/Users/Administrator/Desktop/mytest4.py", line 11, in <module>
    resIndex=myStr.index(‘X‘) #找不到,则抛异常
ValueError: substring not found
>>>

——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。Python版本3.5,系统 Windows7。
Python是优秀的语言,值得努力学习。我是跟着小甲鱼视频教程学习的,推荐。
我是一个新手,所以如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取成就一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。

时间: 2024-10-12 18:18:54

Python3基础 字符串 find与index 检测参数字符串是否存在字符串中,有则范围第一个索引值的相关文章

Python3基础 str find+index 是否存在指定字符串,有则返回第一个索引值

? python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 conda : 4.5.11 type setting : Markdown ? code [email protected]:~$ source activate py37 (py37) [email protected]:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:15:42) Type 'copyright'

Python3基础 str casefold 返回全是小写字母的新字符串

? python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 conda : 4.5.11 type setting : Markdown ? code [email protected]:~$ source activate py37 (py37) [email protected]:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:15:42) Type 'copyright'

Python3基础 in 与 not in 判断一个变量是否在列表中存在

镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.------------------------------------------ code: members=['北斗阳明贪狼星君', '北斗阴精巨门星君', '北斗真人禄存星君', '北斗玄冥文曲星君', '北斗丹元廉贞星君', '北斗北极武曲星君', '北斗天关破军星君'] #'北斗阳明贪狼星君' 在列表中吗? res= '北斗阳明贪狼星君' in members

JavaSE7基础 找到一维数组中指定数值(第一次出现)的索引值 do-while循环实现

版本参数:jdk-7u72-windows-i586注意事项:博文内容仅供参考,不可用于其他用途. 代码 class Demo{ public static void main(String[] args){ int[] myArr={1,3,4,6,7};//奇数个 int num1=3,num2=100; System.out.println(getIndexOfNum(myArr,num1)); System.out.println(getIndexOfNum(myArr,num2));

PHP字符串操作实战用户注册检测界面

PHP字符串操作实战用户注册检测界面一.重点 用字符串的内置函数对输入的字符串进行处理 substr() 取字符串ord()转为ascii码str()把ascii码转为字符串strcmp()比较两个字符串,转为ascii码比较strcasecmp()忽略大小写比较strpos($string,字符)字符串中查找,返回第一次出现的值,没有返回falsestripos()忽略大小写strrpos()最后出现的位置strip_tags()过滤字符串的html和php标记strip_tags($str,

Python3基础-字符串类型

Text Sequence Type - str(immutable) class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string version of object. If object is not provided, returns the empty string. Otherwise, the behavior of str() depends on whet

Python3基础 index 全列表查找与指定索引范围查找

镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.------------------------------------------ code: #看下面的列子,长度11,最后一个索引10 newmember=[0,1,2,3,4,5,6,7,8,9,1] print(newmember) arg=1 ind=newmember.index(arg) print('整个列表的第一个索引:'+str(ind)) arg=1

Python3基础 str 通过拆分字符串与插入新的内容形成新的字符串

? python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 conda : 4.5.11 type setting : Markdown ? code [email protected]:~$ source activate py37 (py37) [email protected]:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:15:42) Type 'copyright'

Python3基础 list index 全列表查找与指定索引范围查找

? ???????Python : 3.7.0 ?????????OS : Ubuntu 18.04.1 LTS ????????IDE : PyCharm 2018.2.4 ??????Conda : 4.5.11 ???typesetting : Markdown ? code """ @Author : 行初心 @Date : 18-9-23 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengji