How to find the index of elements based on a condition in Python

1 Answer

0 votes
a_list = [1, 2, 5, 4, 3, 6, 7]

for i in range(len(a_list)):
    if a_list[i] > 3:
        print(a_list[i])


'''
run:

5
4
6
7

'''

 



answered Oct 27, 2017 by avibootz

Related questions

...