day1/Session-2.vrb
author Shantanu <shantanu@fossee.in>
Wed, 07 Oct 2009 23:41:54 +0530
changeset 56 7a8cb7b07ebb
parent 46 63704b5650f1
permissions -rw-r--r--
Added testing examples in session-3.

\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}