day1/Session-2.vrb
author Shantanu <shantanu@fossee.in>
Thu, 08 Oct 2009 16:16:58 +0530
changeset 61 fc495fd7e84e
parent 46 63704b5650f1
permissions -rw-r--r--
Added tda.tex for day2 and compiled handout for day1.

\frametitle {\typ{for}: the list companion}
  \begin{lstlisting}
In [89]: for p, ch in enumerate( a ):
   ....:     print p, ch
   ....:
   ....:
0 a
1 b
2 c
  \end{lstlisting}
Try: \typ{print enumerate(a)}
\inctime{10}