day1/Session-3.tex
changeset 42 3e554af428a4
parent 27 ecf0f0e885f4
child 46 63704b5650f1
child 47 21de307e6823
equal deleted inserted replaced
31:4bff24bf650d 42:3e554af428a4
    76 \title[Basic Python]{Python:\\A great programming toolkit}
    76 \title[Basic Python]{Python:\\A great programming toolkit}
    77 
    77 
    78 \author[Asokan \& Prabhu] {Asokan Pichai\\Prabhu Ramachandran}
    78 \author[Asokan \& Prabhu] {Asokan Pichai\\Prabhu Ramachandran}
    79 
    79 
    80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
    80 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
    81 \date[] {25, July 2009}
    81 \date[] {10, October 2009}
    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 
   367     print line
   367     print line
   368 for line in urllib2.urlopen('http://site.com'):
   368 for line in urllib2.urlopen('http://site.com'):
   369     print line
   369     print line
   370   \end{lstlisting}
   370   \end{lstlisting}
   371 \end{frame}
   371 \end{frame}
       
   372 
   372 \begin{frame}{And the winner is \ldots OBJECTS!}
   373 \begin{frame}{And the winner is \ldots OBJECTS!}
   373   All objects providing a similar inteface can be used the same way.\\
   374   All objects providing a similar inteface can be used the same way.\\
   374   Functions (and others) are first-class objects. Can be passed to and returned from functions.
   375   Functions (and others) are first-class objects. Can be passed to and returned from functions.
   375   \inctime{10}
   376   \inctime{10}
   376 \end{frame}
   377 \end{frame}