From 5ffbaa06e0166daebf225419ff70a8a21fd4fab2 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Fri, 23 Oct 2009 10:25:14 +0530 Subject: Made usage of FOSSEE consistent, in comments also. --- day1/session3.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'day1/session3.tex') diff --git a/day1/session3.tex b/day1/session3.tex index 628c6a6..5f03d41 100644 --- a/day1/session3.tex +++ b/day1/session3.tex @@ -1,8 +1,8 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Tutorial slides on Python. +%Tutorial slides on Python. % -% Author: Prabhu Ramachandran -% Copyright (c) 2005-2009, Prabhu Ramachandran +% Author: FOSSEE +% Copyright (c) 2009, FOSSEE, IIT Bombay %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[14pt,compress]{beamer} -- cgit 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(-) (limited to 'day1/session3.tex') 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