equal
deleted
inserted
replaced
77 \title[Basic Python]{Python language: Basics} |
77 \title[Basic Python]{Python language: Basics} |
78 |
78 |
79 \author[FOSSEE Team] {The FOSSEE Group} |
79 \author[FOSSEE Team] {The FOSSEE Group} |
80 |
80 |
81 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
81 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
82 \date[] {12 January, 2010\\Day 2, Session 1} |
82 \date[] {29 January, 2010\\Day 2, Session 1} |
83 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
83 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
84 |
84 |
85 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
85 %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
86 %\logo{\pgfuseimage{iitmlogo}} |
86 %\logo{\pgfuseimage{iitmlogo}} |
87 |
87 |
253 \end{lstlisting} |
253 \end{lstlisting} |
254 \end{frame} |
254 \end{frame} |
255 |
255 |
256 \begin{frame}[fragile] |
256 \begin{frame}[fragile] |
257 \frametitle{A bit about IPython} |
257 \frametitle{A bit about IPython} |
|
258 Recall, we showed a few features of IPython, here is one more: |
258 \begin{itemize} |
259 \begin{itemize} |
259 \item IPython provides better help |
260 \item IPython provides better help |
260 \item object.function? |
261 \item object.function? |
261 \begin{lstlisting} |
262 \begin{lstlisting} |
262 In []: a = 'Hello World' |
263 In []: a = 'Hello World' |
263 In []: a.lower? |
264 In []: a.lower? |
264 \end{lstlisting} |
|
265 \item It provides tab completion |
|
266 \begin{lstlisting} |
|
267 In []: a.s<Tab> |
|
268 \end{lstlisting} |
265 \end{lstlisting} |
269 \end{itemize} |
266 \end{itemize} |
270 \end{frame} |
267 \end{frame} |
271 |
268 |
272 \begin{frame}[fragile] |
269 \begin{frame}[fragile] |