diff options
author | Nishanth Amuluru | 2010-10-11 22:44:21 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2010-10-11 22:44:21 +0530 |
commit | 0bdc27f2da8baa5bf9b8ae34df1ae5a66e856b03 (patch) | |
tree | 23e39471c705058c10961ff465517a664abbef43 /loops/quickref.tex | |
parent | c777a70b51353182bcfadaaff9deb2b9d09cf9a2 (diff) | |
parent | 81a76e18a1b11c9565ee198d7ae58bd49d9b3acb (diff) | |
download | st-scripts-0bdc27f2da8baa5bf9b8ae34df1ae5a66e856b03.tar.gz st-scripts-0bdc27f2da8baa5bf9b8ae34df1ae5a66e856b03.tar.bz2 st-scripts-0bdc27f2da8baa5bf9b8ae34df1ae5a66e856b03.zip |
merged
Diffstat (limited to 'loops/quickref.tex')
-rw-r--r-- | loops/quickref.tex | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/loops/quickref.tex b/loops/quickref.tex index b26d168..e0b8d61 100644 --- a/loops/quickref.tex +++ b/loops/quickref.tex @@ -1,8 +1,16 @@ -Creating a linear array:\\ -{\ex \lstinline| x = linspace(0, 2*pi, 50)|} +\textbf{loops} -Plotting two variables:\\ -{\ex \lstinline| plot(x, sin(x))|} +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. -Plotting two lists of equal length x, y:\\ -{\ex \lstinline| plot(x, y)|} |