substring_between_letters takes a string named word, a single character named start, and another character named end. This function should return the substring between the first occurrence of start and end in word. If start or end are not in word, the function should return word. For example, substring_between_letters("apple", "p", "e") should return "pl".
The purpose of the project is just personal learning. I may revisit this code to find different solutions or to apply it under other context.
- Try doing it with index() instead of find()
- The solution given to this exercise was slightly different. Try it removing the else (hint: >-1 instead of == -1)
- Python 3
NA - It's only coding examples, there's no setup.
Project is: finished, - may come back and improve it, or not.
Based on Codecademy's Learn Python 3 course, Code Challenges: String Methods exercises