day2/session2.tex
changeset 378 2299700a8b97
parent 373 f04eca8b2f3d
child 380 669b72283b55
equal deleted inserted replaced
377:40ba8a026ccb 378:2299700a8b97
    76 \title[Basic Python]{Python language: Data structures and functions}
    76 \title[Basic Python]{Python language: Data structures and functions}
    77 
    77 
    78 \author[FOSSEE Team] {The FOSSEE Group}
    78 \author[FOSSEE Team] {The FOSSEE Group}
    79 
    79 
    80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
    80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
    81 \date[] {13 February, 2010\\Day 3, Session 1}
    81 \date[] {09 March, 2010\\Day 2, Session 2}
    82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    83 
    83 
    84 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo}
    84 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo}
    85 %\logo{\pgfuseimage{iitmlogo}}
    85 %\logo{\pgfuseimage{iitmlogo}}
    86 
    86 
   292 \end{lstlisting}
   292 \end{lstlisting}
   293 \end{frame}
   293 \end{frame}
   294 
   294 
   295 \begin{frame}[fragile]
   295 \begin{frame}[fragile]
   296 \frametitle{List containership}
   296 \frametitle{List containership}
       
   297 \emphbar{Recall \typ{num} is \typ{[1, 2, 3, 4]}}
   297 \begin{lstlisting}
   298 \begin{lstlisting}
   298 In []: 4 in num
   299 In []: 4 in num
   299 Out[]: True
   300 Out[]: True
   300 
   301 
   301 In []: b = 15
   302 In []: b = 15