Question: using python Given a list of objects L, write a function called find_all(L,e) to search for all occurrences of e in L and return their
Given a list of objects L, write a function called find_all(L,e) to search for all occurrences of e in L and return their indexes in form of a list. Note that your function must find ALL indexes of e in L, not just the first one. For example, given [1, 5, 9, 1,0, 1, 1] your function returns [0,3,5,6)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
