diff options
author | Shantanu Choudhary | 2009-12-22 14:10:37 +0530 |
---|---|---|
committer | Shantanu Choudhary | 2009-12-22 14:10:37 +0530 |
commit | 534604c38b300b6b419362c487cbf779e7f76ea8 (patch) | |
tree | 1521217ba931f93a96ad98c3019110c89a720b8a /day2/cheatsheet2.tex | |
parent | b902fbdf147a74f1c38b6f00208d753e7021e4ae (diff) | |
download | workshops-534604c38b300b6b419362c487cbf779e7f76ea8.tar.gz workshops-534604c38b300b6b419362c487cbf779e7f76ea8.tar.bz2 workshops-534604c38b300b6b419362c487cbf779e7f76ea8.zip |
commited changes made for scipy and cheatsheats.
Diffstat (limited to 'day2/cheatsheet2.tex')
-rw-r--r-- | day2/cheatsheet2.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day2/cheatsheet2.tex b/day2/cheatsheet2.tex index bb5762a..ece16b8 100644 --- a/day2/cheatsheet2.tex +++ b/day2/cheatsheet2.tex @@ -193,7 +193,7 @@ Tuples are sequences just like Lists, but they are \textbf{immutable}, or items/ \begin{lstlisting} In []: t = (1, 2, 3, 4, 5, 6, 7, 8) \end{lstlisting} -\textbf{Note:} For tupels we use parantheses in place of square brackets, rest is same as lists. +\textbf{Note:} For tuples we use parentheses in place of square brackets, rest is same as lists. \begin{lstlisting} In []: t[0] + t[3] + t[-1] # elements are accessed via indices Out[]: 13 |