summaryrefslogtreecommitdiff
path: root/advanced_python/01_intro.tex
blob: ce7524886ea297cfaf006eeb8cda073e1ae60377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\documentclass[14pt,compress,aspectratio=169]{beamer}

\input{macros.tex}

\title[Introduction]{Advanced Python}
\subtitle{Introduction}

\author[FOSSEE] {The FOSSEE Group}

\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
\date[] {Mumbai, India}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
  \frametitle{About this material}
  \begin{itemize}
  \item Covers some ``advanced'' Python material
  \item Does not cover all of Python
  \item Enough to do many things
    \vspace*{0.5in}
  \item Learn more yourselves!
  \end{itemize}
\end{frame}

\begin{frame}
  \frametitle{Pre-requisites}
  \begin{itemize}
  \item Know ``Basic Python programming '' material well
  \item Uses Python 3.x exclusively
  \item Use any reasonable editor
    \begin{itemize}
    \item Canopy
    \item Spyder
    \item Emacs/Vim
    \item VS Code \url{code.visualstudio.com}
    \end{itemize}
  \item Any Python environment works
    \begin{itemize}
    \item Canopy/EDM
    \item Conda/Anaconda
    \item Standard Python
    \end{itemize}
  \item IPython
  \end{itemize}
\end{frame}

\begin{frame}
  \frametitle{Approach and advice}
  \begin{itemize}
  \item Entirely hands-on (type along!)
  \item Many exercises
  \item Do not treat this as theory!
  \item \alert{Learn by doing!}
  \end{itemize}
\end{frame}

\end{document}