diff options
author | Madhusudan.C.S | 2009-10-07 15:32:44 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-10-07 15:32:44 +0530 |
commit | 285bf605bdb53e0f2ee8db5a63713736c9c6b266 (patch) | |
tree | 4dc824f12718025d44ec5ffe1766f9656f5ebfb1 /day1/Session-4.tex | |
parent | 93e3e8b905c4b235099d630efab8d1ccab52e2e1 (diff) | |
download | workshops-more-scipy-285bf605bdb53e0f2ee8db5a63713736c9c6b266.tar.gz workshops-more-scipy-285bf605bdb53e0f2ee8db5a63713736c9c6b266.tar.bz2 workshops-more-scipy-285bf605bdb53e0f2ee8db5a63713736c9c6b266.zip |
Changed section titles for Session 2 and 4 slides.
Diffstat (limited to 'day1/Session-4.tex')
-rwxr-xr-x | day1/Session-4.tex | 8 |
1 files changed, 4 insertions, 4 deletions
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} |