@SamMeechWard

Comment with your best python solution to this problem. 

https://coddy.tech/challenges/sum_of_found_indexes_python

@gabrielmendietahernandez3320

return sum([index for index, item if item == n])

@bobsbakail3975

You could use range based loop which is more like traditional c loops.

@sheesh1337

whenever i have to use python at work, i always have this "wtf is python syntax" in my head 😂
totally understandable

@ExZeMIP

how can anyone with some python knowledge not know enumerate??