From 4489914505951911d34fba7e9ab387cc6edaf051 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Fri, 23 Oct 2009 12:10:27 +0530 Subject: Minor edits to day1 session3. --- day1/session3.tex | 4 ++-- 1 file 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 -- cgit