diff options
author | Puneeth Chaganti | 2009-10-23 12:10:27 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2009-10-23 12:10:27 +0530 |
commit | 4489914505951911d34fba7e9ab387cc6edaf051 (patch) | |
tree | f5016206018619cf67807358971efceb02c50c0a | |
parent | f065f8630fda18c61e7cc174eadc2c2dc934a7f9 (diff) | |
download | workshops-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.tex | 4 |
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 |