day1/cheatsheet2.tex
changeset 341 7ae88b9da553
parent 340 347ff2714deb
parent 330 46533051b9d3
--- a/day1/cheatsheet2.tex	Tue Dec 08 16:37:18 2009 +0530
+++ b/day1/cheatsheet2.tex	Tue Jan 05 15:23:02 2010 +0530
@@ -29,7 +29,7 @@
 \section{Plotting Points with Lists}
 
 \begin{lstlisting}
-In []: x = [0, 1, 2, 3]
+In []: x = [0, 1, 2, 3] # Creating a list
 In []: y = [7, 11, 15, 19]
 In []: plot(x, y)
 In []: clf()