List Python Tutorial

li = ['a', 'b', 'new', 'c', 'z', 'example', 'new', 'two', 'elements'] 
print li.index("example")                       
print li.index("new")                                
print li.index("c")