loops/quickref.tex
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 11 Nov 2010 10:37:26 +0530
changeset 465 78d20cd87c7e
parent 285 7c4855fb8e5f
permissions -rw-r--r--
Added questions to writing python scripts.

\textbf{loops}

To iterate over a sequence: \lstinline|for i in sequence:|\\
\texttt{i} is the looping variable. 

To iterate while a condition is true: \lstinline|while condition:|

Blocks in python are indented. To end block return to the previous
indentation. 

To break out of the innermost loop: \lstinline|break|

To skip to end of current iteration: \lstinline|continue|

\lstinline|pass| is just a syntactic filler.