summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuneeth Chaganti2009-10-23 12:10:27 +0530
committerPuneeth Chaganti2009-10-23 12:10:27 +0530
commit4489914505951911d34fba7e9ab387cc6edaf051 (patch)
treef5016206018619cf67807358971efceb02c50c0a
parentf065f8630fda18c61e7cc174eadc2c2dc934a7f9 (diff)
downloadworkshops-more-scipy-4489914505951911d34fba7e9ab387cc6edaf051.tar.gz
workshops-more-scipy-4489914505951911d34fba7e9ab387cc6edaf051.tar.bz2
workshops-more-scipy-4489914505951911d34fba7e9ab387cc6edaf051.zip
Minor edits to day1 session3.
-rw-r--r--day1/session3.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/day1/session3.tex b/day1/session3.tex
index 5f03d41..bca7e20 100644
--- a/day1/session3.tex
+++ b/day1/session3.tex
@@ -158,8 +158,8 @@ Machinery Required -
In []: L = []
In []: T = []
In []: for line in open('pendulum.txt'):
- .... len, t = line.split()
- .... L.append(float(len))
+ .... ln, t = line.split()
+ .... L.append(float(ln))
.... T.append(float(t))
\end{lstlisting}
We now have two lists L and T