Revision 3 as of 2008-11-15 13:59:44

Clear message

enumerate is easy to use:

   1 for index, character in enumerate("hello"):
   2   print "#%d: %s" % (index, character)

...which prints out:

#0: h
#1: e
#2: l
#3: l
#4: o

You can use it on just about any iterable sequence.

Unable to edit the page? See the FrontPage for instructions.