li.index("example")
# finds the first occurrence of a value in the list and returns the index
# If the value is not found in the list, Python raises an exception
"c" in li :test whether a value is in the list, use in, which returns True if the value is found or False if it is not.