summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhusudan.C.S2009-10-07 15:32:44 +0530
committerMadhusudan.C.S2009-10-07 15:32:44 +0530
commite038d6501ba65ff669481027230c129689c63d4d (patch)
tree4dc824f12718025d44ec5ffe1766f9656f5ebfb1
parent9f9ad2c7b93861355cb4685dcffa1589a84aafc1 (diff)
downloadworkshops-e038d6501ba65ff669481027230c129689c63d4d.tar.gz
workshops-e038d6501ba65ff669481027230c129689c63d4d.tar.bz2
workshops-e038d6501ba65ff669481027230c129689c63d4d.zip
Changed section titles for Session 2 and 4 slides.
-rwxr-xr-xday1/Session-2.tex2
-rwxr-xr-xday1/Session-4.tex8
2 files changed, 5 insertions, 5 deletions
diff --git a/day1/Session-2.tex b/day1/Session-2.tex
index 21daeba..5c597d4 100755
--- a/day1/Session-2.tex
+++ b/day1/Session-2.tex
@@ -110,7 +110,7 @@
\titlepage
\end{frame}
-\section{Python}
+\section{Functions and basic data structures}
\subsection{Exercises on Control flow}
\begin{frame}
diff --git a/day1/Session-4.tex b/day1/Session-4.tex
index 9dbffbe..6a8fe95 100755
--- a/day1/Session-4.tex
+++ b/day1/Session-4.tex
@@ -110,16 +110,16 @@
\titlepage
\end{frame}
-\section{Python}
+\section{Advanced Data structures, Functions and Debugging}
\subsection{Dictionary}
\begin{frame}{Dictionary}
\begin{itemize}
- \item aka associative arrays, key-value pairs, hashmaps, hashtables \ldots
- \item \typ{ d = \{ ``Hitchhiker's guide'' : 42, ``Terminator'' : ``I'll be back''\}}
\item lists and tuples index: 0 \ldots n
\item dictionaries index using strings
- \item aka key-value pairs
+ \item \typ{ d = \{ ``Hitchhiker's guide'' : 42, ``Terminator'' : ``I'll be back''\}}
+ \item \typ{d[``Terminator'']\\``I'll be back''}
+ \item aka associative array, key-value pair, hashmap, hashtable \ldots
\item what can be keys?
\end{itemize}
\end{frame}