summaryrefslogtreecommitdiff
path: root/day2/cheatsheet2.tex
diff options
context:
space:
mode:
authorSantosh G. Vattam2010-01-05 15:23:02 +0530
committerSantosh G. Vattam2010-01-05 15:23:02 +0530
commitee0e1fabd1b2f0e2d71b99a93c1ecb948474f677 (patch)
tree01ab9ea0019ca45828493ce373737f38240e9279 /day2/cheatsheet2.tex
parent5c6a22254dd22ba8225a6bb7b816548cdb70cebc (diff)
parent508f280ce50c942f08f8fdb4bc76ee9654d4ffda (diff)
downloadworkshops-more-scipy-ee0e1fabd1b2f0e2d71b99a93c1ecb948474f677.tar.gz
workshops-more-scipy-ee0e1fabd1b2f0e2d71b99a93c1ecb948474f677.tar.bz2
workshops-more-scipy-ee0e1fabd1b2f0e2d71b99a93c1ecb948474f677.zip
Branches merged.
Diffstat (limited to 'day2/cheatsheet2.tex')
-rw-r--r--day2/cheatsheet2.tex2
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