I should find out an index of an item from a list of words. The function:
def index(lst_words, word):
should return the index of word in lst_words.
e.g.
>>> index (['how, 'to', 'find'], ['how'])
shoud return 0
why this one doesn't work for me?
def index (lst_words, word):
find = lst_words.index(word)
return find