diff options
author | Shantanu | 2009-10-23 00:40:55 +0530 |
---|---|---|
committer | Shantanu | 2009-10-23 00:40:55 +0530 |
commit | 52300f6e3283fe3d0d28e7020153907573f1a2fe (patch) | |
tree | d518e74ffcd26f3e83cc89e702b330111e5adf8e /day2/session1.tex | |
parent | 740715c1c83bdc8101edc241f68ca7cf57989147 (diff) | |
download | workshops-more-scipy-52300f6e3283fe3d0d28e7020153907573f1a2fe.tar.gz workshops-more-scipy-52300f6e3283fe3d0d28e7020153907573f1a2fe.tar.bz2 workshops-more-scipy-52300f6e3283fe3d0d28e7020153907573f1a2fe.zip |
Added changes suggested by PR for session 1 day 1.
Diffstat (limited to 'day2/session1.tex')
-rw-r--r-- | day2/session1.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/day2/session1.tex b/day2/session1.tex index f51ce54..e77e6df 100644 --- a/day2/session1.tex +++ b/day2/session1.tex @@ -343,11 +343,11 @@ Out[]: [8, 7, 6, 5, 4, 3, 2, 1] In []: lst.extend([0, -1, -2]) In []: lst -Out[]: [8, 7, 6, 5, 4, 3, 2, 1, 0, -1, -2] +Out[]: [8, 7, 6, 5, 4, 3, 2, 1, 0, -1] In []: lst.remove(0) In []: lst -Out[]: [8, 7, 6, 5, 4, 3, 2, 1, -1, -2] +Out[]: [8, 7, 6, 5, 4, 3, 2, 1, -1] \end{lstlisting} \end{frame} @@ -392,16 +392,16 @@ Out[]: 13 \frametitle{Dictionaries} \alert {lists and tuples: integer indexes :: dictionaries: string indexes} \begin{lstlisting} -In []: player = {'Mat': 134, 'Inn': 233, 'Runs': 10823, 'Avg': 52.53} +In []: player = {'Mat': 134,'Inn': 233, + 'Runs': 10823, 'Avg': 52.53} In []: player['Avg'] Out[]: 52.530000000000001 - In []: player.keys() Out[]: ['Runs', 'Inn', 'Avg', 'Mat'] - In []: player.values() -Out[]: [10823, 233, 52.530000000000001, 134] +Out[]: [10823, 233, + 52.530000000000001, 134] \end{lstlisting} \end{frame} |