Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Get the Index of the Symbol | Strings
Data Types in Python

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:

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

Swipe to start coding

Hone your skills as much as possible!

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

Lösung

string = "Work your way up!"

# Find the index of the letter `p`
p = string.find('p')

# Find the index of the letter `y`
y = string.find('y')

# Find the index of the letter `r`
r = string.find('r')

print("Variable p equals:", p)
print("Variable y equals:", y)
print("Variable r equals:", r)

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 3. Kapitel 9
string = "Work your way up!"

# Find the index of the letter `p`
p = string.find(___)

# Find the index of the letter `y`
y = ___.___('y')

# Find the index of the letter `r`
r = ___

print("Variable p equals:", p)
print("Variable y equals:", y)
print("Variable r equals:", r)
toggle bottom row
some-alt