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‘, ‘credits‘ or ‘license‘ for more information
IPython 6.5.0 -- An enhanced Interactive Python. Type ‘?‘ for help.

In [1]: my_str = ‘HELLOHELLO‘

In [2]: # 存在,则返回首次出现的,第一个L的索引值

In [3]: my_str.find(‘LLO‘)
Out[3]: 2

In [4]: # 存在,则返回首次出现的,第一个L的索引值

In [5]: my_str.index(‘LLO‘)
Out[5]: 2

In [6]: # find找不到,则返回-1

In [7]: my_str.find(‘X‘)
Out[7]: -1

In [8]: # index找不到,则抛异常

In [9]: my_str.index(‘X‘)
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-9-03ca60cad0af> in <module>()
----> 1 my_str.index(‘X‘)

ValueError: substring not found

In [10]: exit
(py37) [email protected]:~$ source deactivate py37
[email protected]:~$

?

resource

  • [文档] https://docs.python.org/3/
  • [规范] https://www.python.org/dev/peps/pep-0008/
  • [规范] https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_language_rules/
  • [源码] https://www.python.org/downloads/source/
  • [ PEP ] https://www.python.org/dev/peps/
  • [平台] https://www.cnblogs.com/

?



Python具有开源、跨平台、解释型、交互式等特性,值得学习。

Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。

代码的书写要遵守规范,这样有助于沟通和理解。

每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。

原文地址:https://www.cnblogs.com/xingchuxin/p/9696328.html

时间: 2024-11-08 16:37:17

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

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

镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.------------------------------------------ code: myStr='HELLOHELLO' resOfFindLLO=myStr.find('LLO') #存在,则返回首次出现的,第一个L的索引值 resOfIndexLLO=myStr.index('LLO') #存在,则返回首次出现的,第一个L的索引值 print(resOfF

JavaSE8基础 String lastIndexOf 反向查找 返回字符在字符串中第一次出现时的索引值

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku.t00; public class Dome3 { public static void main(String[] args) { // 索引值 // 10 // 11 // 12 // 13 // 0123456789 String str = "abc01234543

Python3基础 str translate 将指定字符转换成另一种特定字符

? 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 endswith 是否以指定字符串结束

? 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 split 用指定的字符将字符串分割

? 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 循环输出list中每个单词及其长度

? python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 conda : 4.5.11 type setting : Markdown ? code """ @Author : 行初心 @Date : 18-9-23 @Blog : www.cnblogs.com/xingchuxin @GitHub : github.com/GratefulHeartCoder """ de

Python3基础 hasattr 测试一个对象是否有指定的属性

镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.------------------------------------------ code: class A : #属性 num=0 a=A() #属性的名字要用''包围起来 print(hasattr(a,'num')) print(hasattr(a,'n')) #否则 print(hasattr(a,num)) result: ============= REST

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 xingchuxin (xingchuxin) [email protected]:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:15:42) Type

Python3基础 str &quot;&quot;&quot; 多行字符串

? 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 xingchuxin (xingchuxin) [email protected]:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:15:42) Type