Given a list [\"foo\", \"bar\", \"baz\"] and an item in the list \"bar\", how do I get its index (1) in Python?
[\"foo\", \"bar\", \"baz\"]
\"bar\"
1
You have to set a condition to check if the element you're searching is in the list
if 'your_element' in mylist: print mylist.index('your_element') else: print None