Open Metric
Science, Fiction and Me

Today I Learned

Python enumertate

Code Style of Python Guide

enumerate() can be used to keep track of the index of the list.

test = [None] * 5
for n, elem in enumerate( range(5,10) ):
    print n, elem
    test[n] = elem*2

Here we also used the technique of creating a list of length 5.

A Random #TIL# for You


Most technical TILs will be updated at datumorphism.leima.is/til

By OctoMiao

Last updated