On 23/12/11 11:02, lina wrote:
for i in range(len(result)):
for j in range(len(result[i])):
print(result[i][j])
You don't need all the indexing.
Use Pythons for loop to get the items:
for group in result:
for item in group:
print item, # comma prevents auto newline
It's easier to read and less processing for the computer.
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor