Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

from array import *

arr = array('i', [1,5,2,4,3,9,11,13,8,6,10,7,12,])


itemlist = list(arr)
for item in itemlist:
if item % 2 == 0:
True
print (item)

You might also like