diff options
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} |