Найти строку в списке и вернуть индекс Python

As a list comprehension:

[i for i, j in enumerate(['foo', 'bar', 'baz']) if j == 'bar']
Sachin