Answers for "find in python in string"

64

find string in string python

>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False
Posted by: Guest on December-09-2019
0

python string find

The find() method returns the index of first occurrence of the substring
(if found). If not found, it returns -1.
message = 'Python is a fun programming language'

# check the index of 'fun'
print(message.find('fun'))

# Output: 12
Posted by: Guest on September-13-2021

Code answers related to "find in python in string"

Python Answers by Framework

Browse Popular Code Answers by Language