diff options
Diffstat (limited to 'day1/session3.tex')
-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 |