Quick actions

cmd+k|ctrl+k

Navigation

Languages

Continue (2)

Snippet info

Language

Python

Visibility

public

Author

hilmi-am

Created

2020-06-23T13:31:43Z

Updated

2020-06-23T13:31:43Z

for a in[12, -1, 2, -3, 5, -7, 4, 7]:
    if a <= 1:
        continue
    print('Positif elemen:{}'.format(a))
INFO