Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Get the Index of the Symbol | Strings
Tipos de Datos en Python
course content

Contenido del Curso

Tipos de Datos en Python

Tipos de Datos en Python

1. Familiarizándonos con los Números en Python
2. ¿Verdadero o Falso?
3. Strings
4. Reuniendo Todos los Temas

book
Get the Index of the Symbol

Wow! We've done a lot!

It is time to share some insights. In fact, there is no necessity to manually specify the index of the symbol to find it in the string; it seems we have an intuition for this, as we recognize Python's user-friendly approach and attentiveness to its users.

Hence, the find() function was implemented.

Note

It will be beneficial to understand that this method is useful when we seek to determine the index of a particular symbol or word within a text. Additionally, it is important to note that this method returns the index of the first occurrence of the substring. In cases where the substring is not found, it returns a value of '-1'.

Take a look at the example; it will help you get the syntax:

12
string = "Channel efforts to success!" print(string.find('n'))
copy
Tarea
test

Swipe to begin your solution

Hone your skills as much as possible!

So here you should find the index of the letters p, y, and r.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 3. Capítulo 9
toggle bottom row

book
Get the Index of the Symbol

Wow! We've done a lot!

It is time to share some insights. In fact, there is no necessity to manually specify the index of the symbol to find it in the string; it seems we have an intuition for this, as we recognize Python's user-friendly approach and attentiveness to its users.

Hence, the find() function was implemented.

Note

It will be beneficial to understand that this method is useful when we seek to determine the index of a particular symbol or word within a text. Additionally, it is important to note that this method returns the index of the first occurrence of the substring. In cases where the substring is not found, it returns a value of '-1'.

Take a look at the example; it will help you get the syntax:

12
string = "Channel efforts to success!" print(string.find('n'))
copy
Tarea
test

Swipe to begin your solution

Hone your skills as much as possible!

So here you should find the index of the letters p, y, and r.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 3. Capítulo 9
Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt