Merged Madhu and Mainline branches.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Tue, 27 Oct 2009 15:35:08 +0530
changeset 191 c972092fa463
parent 190 3068ec210c51 (current diff)
parent 189 baf196170c08 (diff)
child 192 1574b3bc6be7
Merged Madhu and Mainline branches.
--- a/day1/session2.tex	Tue Oct 27 15:34:43 2009 +0530
+++ b/day1/session2.tex	Tue Oct 27 15:35:08 2009 +0530
@@ -135,7 +135,7 @@
 \begin{frame}
 \frametitle{But its impractical..}
 \begin{itemize}
-  \item We can't keep running the IPython shell for days
+  \item We can't keep running IPython for days
   \item And its a pain to go back and edit
 \end{itemize}
 And the solution is..\\
@@ -233,6 +233,9 @@
 
 \begin{frame}[fragile]
   \frametitle{List: Slicing}
+  \begin{block}{Remember\ldots}
+	In []: lst = [1,2,3,4,5] 
+  \end{block}
 \alert{\typ{list[initial:final:step]}}
 \begin{lstlisting}
 In []: lst[1:3]  # A slice.
@@ -244,7 +247,7 @@
 \end{frame}
 
 \begin{frame}[fragile]
-  \frametitle{List concatenation and list methods}
+  \frametitle{List operations}
 \begin{lstlisting}
 In []: anthrlst = [6,7,8,9]
 In []: lnglst = lst + anthrlst