Search Results

70
votes

Hidden features of Python

enumerate Wrap an iterable with enumerate and it will yield the item along with it's index. For example: >>> a = ['a', 'b', 'c', 'd', 'e'] …