diff options
author | Santosh G. Vattam | 2010-04-27 15:20:28 +0530 |
---|---|---|
committer | Santosh G. Vattam | 2010-04-27 15:20:28 +0530 |
commit | 8b326ca582f717f93b24a0d50237fdde7ab1dfcf (patch) | |
tree | 82cf7e9671897cb7b3c7e03bca24314b6e0aa5d8 /day2 | |
parent | c322aef973e17aa5ce909a4a4c23cca7f1d51e6d (diff) | |
download | workshops-more-scipy-8b326ca582f717f93b24a0d50237fdde7ab1dfcf.tar.gz workshops-more-scipy-8b326ca582f717f93b24a0d50237fdde7ab1dfcf.tar.bz2 workshops-more-scipy-8b326ca582f717f93b24a0d50237fdde7ab1dfcf.zip |
Minor corrections post SVCE.
Diffstat (limited to 'day2')
-rw-r--r-- | day2/session1.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/day2/session1.tex b/day2/session1.tex index 2be0c35..84f27a1 100644 --- a/day2/session1.tex +++ b/day2/session1.tex @@ -174,12 +174,12 @@ Out[]: 3.0 \begin{lstlisting} In []: t = True -In []: f = not t +In []: F = not t -In []: f or t +In []: F or t Out[]: True -In []: f and t +In []: F and t Out[]: False \end{lstlisting} \inctime{5} |