For example I have:
l = [4, 1 ,3, 4, 7 , 4]
if I use
l.index(4)
it returns back 0
How do I get it to return back 0, 3, 5?
For example I have:
l = [4, 1 ,3, 4, 7 , 4]
if I use
l.index(4)
it returns back 0
How do I get it to return back 0, 3, 5?