# HG changeset patch # User Puneeth Chaganti # Date 1256280027 -19800 # Node ID 70fe6973176179b1f52709e14c1bd938b4882867 # Parent 6874a667dc4e65c060f53f2891adad2aad5d92b8 Minor edits to day1 session3. diff -r 6874a667dc4e -r 70fe69731761 day1/session3.tex --- a/day1/session3.tex Fri Oct 23 11:57:16 2009 +0530 +++ b/day1/session3.tex Fri Oct 23 12:10:27 2009 +0530 @@ -158,8 +158,8 @@ 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