diff options
Diffstat (limited to 'day2')
-rwxr-xr-x | day2/cheatsheet1.tex | 136 | ||||
-rw-r--r-- | day2/cheatsheet2.tex | 89 | ||||
-rw-r--r-- | day2/cheatsheet3.tex | 65 |
3 files changed, 290 insertions, 0 deletions
diff --git a/day2/cheatsheet1.tex b/day2/cheatsheet1.tex new file mode 100755 index 0000000..c883ebe --- /dev/null +++ b/day2/cheatsheet1.tex @@ -0,0 +1,136 @@ +\documentclass[12pt]{article} + + +\title{Python: Basics} +\author{FOSSEE} +\usepackage{listings} +\lstset{language=Python, + basicstyle=\ttfamily, +commentstyle=\itshape\bfseries, +showstringspaces=false +} +\newcommand{\typ}[1]{\lstinline{#1}} +\usepackage[english]{babel} +\usepackage[latin1]{inputenc} +\usepackage{times} +\usepackage[T1]{fontenc} +\usepackage{ae,aecompl} +\usepackage{mathpazo,courier,euler} +\usepackage[scaled=.95]{helvet} + +\begin{document} +\date{} +\vspace{-1in} +\begin{center} +\LARGE{Python: Basics}\\ +\large{FOSSEE} +\end{center} +\section{Data types} +Complex Numbers +\begin{lstlisting} +In []: c = 3+4j +In []: abs(c) +Out[]: 5.0 +In []: c.imag +Out[]: 4.0 +In []: c.real +Out[]: 3.0 +\end{lstlisting} +Boolean +\begin{lstlisting} +In []: a = False +In []: b = True +In []: c = True +In []: (a and b) or c +Out[]: True +\end{lstlisting} +Strings + \begin{lstlisting} +In []: w = "hello" +In []: print w[0] + w[2] + w[-1] +Out[]: hlo +In []: len(w) +Out[]: 5 +In []: w[0] = 'H' # ERROR: Strings are immutable + \end{lstlisting} +String methods + \begin{lstlisting} +In []: a = 'Hello World' +In []: a.startswith('Hell') # 'a' starts with 'Hell' +In []: a.endswith('ld') # 'a' ends with 'ld' +In []: a.upper() # all characters to upper case +In []: a.lower() # all characters to lower case +In []: ''.join(['a', 'b', 'c']) +Out[]: 'abc' + \end{lstlisting} +String formatting + \begin{lstlisting} +In []: x, y = 1, 1.234 +In []: 'x is %s, y is %s' %(x, y) +Out[]: 'x is 1, y is 1.234' + \end{lstlisting} +Arithmetic Operators + \begin{lstlisting} +In []: 45 % 2 # Modulo operator +Out[]: 1 +In []: 1234567891234567890 ** 3 # Power +In []: a = 5 +In []: a += 1 +In []: a *= 2 + \end{lstlisting} +String Operations +\begin{lstlisting} +In []: s = 'Hello' +In []: p = 'World' +In []: s + p +Out[]: 'HelloWorld' +In []: s * 4 +Out[]: 'HelloHelloHelloHello' +\end{lstlisting} +Relational and Logical Operators +\begin{lstlisting} +In []: p, z, n = 1, 0, -1 +In []: p == n +Out[]: False +In []: p >= n +Out[]: True +In []: n < z < p +Out[]: True +In []: p + n != z +Out[]: False +\end{lstlisting} +Built-ins +\begin{lstlisting} +In []: int(17 / 2.0) +Out[]: 8 +In []: float(17 / 2) +Out[]: 8.0 +In []: str(17 / 2.0) +Out[]: '8.5' +In []: round( 7.5 ) +Out[]: 8.0 +\end{lstlisting} +Console Input +\begin{lstlisting} +In []: a = raw_input('Enter a value: ') +Enter a value: 5 +\end{lstlisting} +\section{Conditionals} +\typ{if} +\begin{lstlisting} +In []: x = int(raw_input("Enter an integer:")) +In []: if x < 0: + ...: print 'Be positive!' + ...: elif x == 0: + ...: print 'Zero' + ...: elif x == 1: + ...: print 'Single' + ...: else: + ...: print 'More' +\end{lstlisting} +Ternary Operator +\begin{lstlisting} +In []: a = raw_input('Enter number(Q to quit):') +In []: num = int(a) if a != 'Q' else 0 +\end{lstlisting} +\end{document} diff --git a/day2/cheatsheet2.tex b/day2/cheatsheet2.tex new file mode 100644 index 0000000..1504e3c --- /dev/null +++ b/day2/cheatsheet2.tex @@ -0,0 +1,89 @@ +\documentclass[12pt]{article} + + +\title{Python: Data Structures} +\author{FOSSEE} +\usepackage{listings} +\lstset{language=Python, + basicstyle=\ttfamily, +commentstyle=\itshape\bfseries, +showstringspaces=false +} +\newcommand{\typ}[1]{\lstinline{#1}} +\usepackage[english]{babel} +\usepackage[latin1]{inputenc} +\usepackage{times} +\usepackage[T1]{fontenc} +\usepackage{ae,aecompl} +\usepackage{mathpazo,courier,euler} +\usepackage[scaled=.95]{helvet} + +\begin{document} +\date{} +\vspace{-1in} +\begin{center} +\LARGE{Python: Data Structures}\\ +\large{FOSSEE} +\end{center} +\section{Basic Looping} +\typ{while} + \begin{lstlisting} +In []: a, b = 0, 1 +In []: while b < 10: + ...: print b, + ...: a, b = b, a + b # Fibonacci Sequence +\end{lstlisting} +\typ{for} and \typ{range}\\ +\typ{range([start,] stop[, step])} +\begin{lstlisting} +In []: for i in range(3, 10, 2): + ....: print i, i * i +3 9 +5 25 +7 49 +9 81 +\end{lstlisting} +List methods (Contd.) +\begin{lstlisting} +In []: num = [1, 2, 3, 4] +In []: num.append([9, 10, 11]) +In []: num +Out[]: [1, 2, 3, 4, [9, 10, 11]] +In []: num = [1, 2, 3, 4] +In []: num.extend([5, 6, 7]) +In []: num +Out[]: [1, 2, 3, 4, 5, 6, 7] +In []: num.reverse() +In []: num +Out[]: [7, 6, 5, 4, 3, 2, 1] +In []: num.remove(6) +In []: num +\end{lstlisting} +Slicing: \typ{list[initial:final:step]} +\begin{lstlisting} +In []: a[1:-1:2] +Out[]: [2, 4] +In []: a[::2] +Out[]: [1, 3, 5] +In []: a[-1::-1] +Out[]: [5, 4, 3, 2, 1] +\end{lstlisting} +Tuples(Immutable lists) +\begin{lstlisting} +In []: t = (1, 2, 3, 4, 5, 6, 7, 8) +In []: t[0] + t[3] + t[-1] +Out[]: 13 +In []: t[4] = 7 # ERROR: tuples are immutable +\end{lstlisting} +Sets +\begin{lstlisting} +In []: f = set([1,2,3,5,8]) +In []: p = set([2,3,5,7]) +In []: f | p # Union of two sets +Out[]: set([1, 2, 3, 5, 7, 8]) +In []: g = set([2, 4, 5, 7, 4, 0, 5]) +In []: g +Out[]: set([2, 4, 5, 7, 0]) # No repetition allowed. +\end{lstlisting} +\end{document} + diff --git a/day2/cheatsheet3.tex b/day2/cheatsheet3.tex new file mode 100644 index 0000000..8f5a6f1 --- /dev/null +++ b/day2/cheatsheet3.tex @@ -0,0 +1,65 @@ +\documentclass[12pt]{article} + + +\title{Python: Data Structures} +\author{FOSSEE} +\usepackage{listings} +\lstset{language=Python, + basicstyle=\ttfamily, +commentstyle=\itshape\bfseries, +showstringspaces=false +} +\newcommand{\typ}[1]{\lstinline{#1}} +\usepackage[english]{babel} +\usepackage[latin1]{inputenc} +\usepackage{times} +\usepackage[T1]{fontenc} +\usepackage{ae,aecompl} +\usepackage{mathpazo,courier,euler} +\usepackage[scaled=.95]{helvet} + +\begin{document} +\date{} +\vspace{-1in} +\begin{center} +\LARGE{Python: Functions and Objects}\\ +\large{FOSSEE} +\end{center} +\section{Functions} +Function definition + \begin{lstlisting} +def signum( r ): + if r < 0: + return -1 + elif r > 0: + return 1 + else: + return 0 + \end{lstlisting} +Default Arguments +\begin{lstlisting} +def welcome(greet, name='world!'): + print greet, name +\end{lstlisting} +Keyword Arguments +\begin{lstlisting} +In []: plot(y, sin(y), 'g', linewidth=2) +\end{lstlisting} +Self contained python script + \begin{lstlisting} +from scipy import linspace, pi, sin +from pylab import plot, legend, annotate +from pylab import xlim, ylim + +x = linspace(-5*pi, 5*pi, 500) +plot(x, x, 'b') +plot(x, -x, 'b') +plot(x, sin(x), 'g', linewidth=2) +plot(x, x*sin(x), 'r', linewidth=3) +legend(['x', '-x', 'sin(x)', 'xsin(x)']) +annotate('origin', xy = (0, 0)) +xlim(-5*pi, 5*pi) +ylim(-5*pi, 5*pi) + \end{lstlisting} + +\end{document} |