+ 1
Is it possible to use index() on a string?
I was wondering, b/c that many list functions can be used on strings, like list slicing and indexing, if index could be used on a string. I will be testing it in code playground, but it would also help to get some feedback. I recently created an indexing function from scratch for a code challenge, so it would be a relief to know whether I can use index() on a string.
2 Réponses
+ 5
Jin ,
> an alternative way to index() could be the find() function.
the reason for this is that python creates an error (ValueError) when the text (substring) can not be found in the string.
> using find() will return *-1* in case of the substring can not be found.
> if we have to stick with index() for what ever reason, we can use membership operator *in* first, to make sure that the index() function will work
without problem.
see a sample in the attached file:
https://code.sololearn.com/cdZl16b0TJhX/?ref=app