day1/Session-1.vrb
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 08 Oct 2009 15:41:59 +0530
changeset 59 9aac0f128482
parent 46 63704b5650f1
permissions -rw-r--r--
Removed slides on pdb from session 4.

\frametitle {Basic looping}
  \begin{lstlisting}
# Fibonacci series:
# the sum of two elements
# defines the next
a, b = 0, 1
while b < 10:
    print b,
    a, b = b, a + b

\end{lstlisting}
\typ{1 1 2 3 5 8}\\
\alert{Recall it is easy to write infinite loops with \kwrd{while}}
  \inctime{20}