[BangPypers] Iterating list of tuples
Noufal Ibrahim
noufal at gmail.com
Mon Jul 4 08:31:14 CEST 2011
Asif Jamadar <asif.jamadar at rezayat.net> writes:
> 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"
if the list has just one tuple, you need to iterate over it's individual
elements.
for i in data[0]: # Iterate over elements of the tuple
if i > 5:
print "greater"
else:
print "lesser"
`value` in your code does not mean the index, it's the actual element
itself.
[...]
--
~noufal
http://nibrahim.net.in
I'm proud of my humility.
More information about the BangPypers
mailing list