“Índice de String Python ()” Respostas de código

Índice de String Python de

sentence = 'Python programming is fun.'

result = sentence.index('is fun')
print("Substring 'is fun':", result)

result = sentence.index('Java')
print("Substring 'Java':", result)
Healthy Heron

Índice de String Python ()

myStr = "py py py py"
print(myStr.find("js"))
print(myStr.index("js"))
codelearner

Índice de String Python ()

myStr = "py py py py"
print(myStr.find("js"))
print(myStr.index("js"))


## OUTPUT:

-1
Traceback (most recent call last):
  File "D:\Programming\python\article\find.py", line 38, in <module>
    print(myStr.index("js"))
ValueError: substring not found
codelearner

Índice de String Python ()

myStr = "py py py py"
print(myStr.find("js"))
print(myStr.index("js"))
codelearner

Índice de String Python ()

myStr = "py py py py"
print(myStr.find("js"))
print(myStr.index("js"))
codelearner

Respostas semelhantes a “Índice de String Python ()”

Procure respostas de código populares por idioma

Procurar outros idiomas de código