Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find the location of a character in a string in python

>>> myString = 'Position of a character'
>>> myString.find('s')
2
>>> myString.find('x')
-1
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #location #character #string #python
ADD COMMENT
Topic
Name
9+3 =