Question: This needs to be executed through Codio and written in Python 3. Thanks 3.2. Hunt for red Tip: String.find(searchWord) In this challenge, you will be

 This needs to be executed through Codio and written in Python3. Thanks 3.2. Hunt for red Tip: String.find(searchWord) In this challenge, you

This needs to be executed through Codio and written in Python 3. Thanks

3.2. Hunt for red Tip: String.find(searchWord) In this challenge, you will be asked to find one string in the text of another string. Python provides a function to help with this called find) that can be called on any string. To find a string needle in another string haystack , use haystack.find(needle) which will return the position where needle was found, or -1 if it was not found at all. haystack 'abc def ghi needle- 'def needleLocation- haystack.find(needle) print(needneedleLocation) print (haystack.find(' chicken')) RUN FIND TEST

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!