[BangPypers] Iterating list of tuples

Asif Jamadar asif.jamadar at rezayat.net
Mon Jul 4 08:24:48 CEST 2011


Suppose I have list of tuples

data = [
    (10, 25, 18, 17, 10, 12, 26, 5),
    ]

for value in data:
     if data[value]>5:
                print " greater"
    else:
       print "lesser"

But the code giving me error so can I know how iterate list of tuples?



More information about the BangPypers mailing list