-
Notifications
You must be signed in to change notification settings - Fork 1
/
MASTER.tex
75 lines (63 loc) · 2.33 KB
/
MASTER.tex
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
63
64
65
66
67
68
69
70
71
72
73
74
75
\documentclass{beamer}
\usepackage{subfiles}
\usepackage{framed}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
%=============================================================== %
\begin{frame}
\begin{figure}
\centering
\includegraphics[width=1.1\linewidth]{pythonlogo}
\end{figure}
\end{frame}
%=============================================================== %
\begin{frame}
\Large
\textbf{What is Python?}
\begin{quote}
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together.
\end{quote}
(Python.org)
\end{frame}
%=============================================================== %
\begin{frame}
\Large
\textbf{What is Python?}
\begin{quote}
Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
\end{quote}
(Python.org)
\end{frame}
%=============================================================== %
\begin{frame}
\Large
\textbf{History of Python}
\begin{quote}
Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum in the Netherlands as a successor of a language called ABC. Guido remains Python’s principal author, although it includes many contributions from others.
\end{quote}
\end{frame}
\subfile{00-leadout.tex}
\subfile{01-Introduction.tex}
\subfile{01-versionsconventions.tex}
\subfile{02-visualization.tex}
\subfile{02-packages.tex}
%===================================================== %
\begin{frame}
\huge
Three Core Packages
\begin{enumerate}
\item numpy
\item pandas
\item scipy
\end{enumerate}
\end{frame}
%====================================================== %
\subfile{numpy.tex}
\subfile{pandas}
\subfile{scipy.tex}
\subfile{textmining.tex}
\subfile{03-datastructures.tex}
\subfile{06-specialarrays.tex}
\subfile{09-probdistributions.tex}
\end{document}