1lst = ["Alice","Bob","Duckie","Toucan"]
2lst.index("Toucan")
33
4The index function returns where the value given is in the string.
5The time complexity is O(n), as the worst case scenario requires iterating
6over n elements to find the desired result.