summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-10-23 17:18:58 +0530
committerSantosh G. Vattam2009-10-23 17:18:58 +0530
commit2c3db1e7de138b5f0e1db7263c09776d8d7c2a3b (patch)
treec022ded165e9cd61305ed8584feff3c6f65ec302
parent2773760a93e8d8ae88481c78a4e1d83df446b1a0 (diff)
downloadworkshops-2c3db1e7de138b5f0e1db7263c09776d8d7c2a3b.tar.gz
workshops-2c3db1e7de138b5f0e1db7263c09776d8d7c2a3b.tar.bz2
workshops-2c3db1e7de138b5f0e1db7263c09776d8d7c2a3b.zip
Minor edits to Session 2 day 1.
-rw-r--r--day1/session2.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/day1/session2.tex b/day1/session2.tex
index b9654c1..a9a204f 100644
--- a/day1/session2.tex
+++ b/day1/session2.tex
@@ -246,7 +246,7 @@ Out[]: 7
\begin{frame}[fragile]
\frametitle{List: Slicing}
- \typ{list[initial:final:step]}
+list[initial:final:step]
\begin{lstlisting}
In []: lst[1:3] # A slice.
Out[]: [2, 3]
@@ -259,15 +259,15 @@ Out[]: [2, 3]
\begin{frame}[fragile]
\frametitle{List methods}
\begin{lstlisting}
-In []: lst.append([6,7])
+In []: lst.append(6)
In []: lst
-Out[]: [1, 2, 3, 4, 5, [6, 7]]
+Out[]: [1, 2, 3, 4, 5, 6]
\end{lstlisting}
%\inctime{10}
\end{frame}
\begin{frame}[fragile]
-\frametitle{\typ{for}}
+\frametitle{\texttt{for}}
Used to iterate over lists\\ Let us look at another example.
\begin{lstlisting}
In []: lst = [1,2,3,4,5,6]