day2/session1.tex
changeset 387 5e485a5d8ac4
parent 385 c70118cdde66
child 389 aa392117454f
equal deleted inserted replaced
386:a0bec380b44f 387:5e485a5d8ac4
   172 \begin{frame}[fragile]
   172 \begin{frame}[fragile]
   173   \frametitle{Booleans}
   173   \frametitle{Booleans}
   174   \begin{lstlisting}
   174   \begin{lstlisting}
   175 In []: t = True
   175 In []: t = True
   176 
   176 
   177 In []: f = not t
   177 In []: F = not t
   178 
   178 
   179 In []: f or t
   179 In []: F or t
   180 Out[]: True
   180 Out[]: True
   181 
   181 
   182 In []: f and t
   182 In []: F and t
   183 Out[]: False
   183 Out[]: False
   184   \end{lstlisting}
   184   \end{lstlisting}
   185   \inctime{5}
   185   \inctime{5}
   186 \end{frame}
   186 \end{frame}
   187 
   187