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[] {1 May, 2010\\Day 2, Session 1} |
82 \date[] {SciPy 2010, Introductory tutorials\\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 |
456 |
456 |
457 In []: a = raw_input('Enter a value: ') |
457 In []: a = raw_input('Enter a value: ') |
458 Enter a value: 5 |
458 Enter a value: 5 |
459 \end{lstlisting} |
459 \end{lstlisting} |
460 \item Prompt string is optional. |
460 \item Prompt string is optional. |
461 \item All keystrokes are Strings! |
461 \item All keystrokes are strings! |
462 \item \texttt{int()} converts string to int. |
462 \item \texttt{int()} converts string to int. |
463 \end{itemize} |
463 \end{itemize} |
464 \end{frame} |
464 \end{frame} |
465 |
465 |
466 \begin{frame}[fragile] |
466 \begin{frame}[fragile] |