Languages
[Edit]
EN

Python - find character index in string

0 points
Created by:
Nataniel-Barclay
499

In this article, we would like to show you how to find a character index in string in Python.

Quick solution:

text = 'ABC'
index = text.find('A')

print(index)  # A

 

Practical example

In this example, we use the String find() method to find indexes of the characters in a given string.

text = 'ABC'

indexA = text.find('A')
indexB = text.find('B')
indexZ = text.find('Z')

print(indexA)  # 0
print(indexB)  # 1
print(indexZ)  # -1

Output: 

0
1
-1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - string (popular problems)

Python - find character index in string
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join