summaryrefslogtreecommitdiff
path: root/slides/basic-python/func.tex
blob: b66be0602fc5bf3cab92908ae0a02e9ec2092ecb (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
\section{Functions}

\begin{frame}[fragile]
  \frametitle{Abstracting}
  \begin{itemize}
  \item Reduce duplication of code
  \item Fewer lines of code and hence lesser scope for bugs
  \item Re-usability of code, that's already been written
  \item Use functions written by others, without exactly knowing how
    they do, what they are doing
  \item \alert{Enter Functions!}
  \end{itemize}
\end{frame}


\begin{frame}[fragile]
  \frametitle{Defining functions}
  \begin{itemize}
  \item Consider the function \texttt{f(x) = x\textasciicircum{}2}
  \item Let's write a Python function, equivalent to this
  \end{itemize}
  \begin{lstlisting}
   In[]: def f(x):
   ....:     return x*x
   ....:

   In[]: f(1)
   In[]: f(2)
  \end{lstlisting}
  \begin{itemize}
  \item \texttt{def} is a keyword  
  \item \texttt{f} is the name of the function 
  \item \texttt{x} the parameter of the function
  \item \texttt{return} is a keyword; specifies what should be
    returned
  \end{itemize}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Defining functions \ldots}
  \begin{lstlisting}
  In[]:  def greet():
  ....:      print "Hello World!"
  ....:

  In[]:  greet()
  \end{lstlisting}
  \begin{itemize}
  \item \texttt{greet} is a function that takes no arguments
  \item Also, it is not returning anything explicitly
  \item But implicitly, Python returns \texttt{None}
  \end{itemize}
  \begin{lstlisting}
  In[]:  def avg(a, b):
  ....:      return (a + b)/2
  ....:
      
  In[]:  avg(12, 10)
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Doc-strings}
  \begin{itemize}
  \item It's highly recommended that all functions have documentation
  \item We write a doc-string along with the function definition
  \end{itemize}
  \begin{lstlisting}
  In[]:  def avg(a, b):
         """ avg takes two numbers as input 
         and returns their average"""

  ....:      return (a + b)/2
  ....:
        
  In[]:  avg?
  In[]:  greet?
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Returning multiple values}
  \begin{itemize}
  \item Return area and perimeter of circle, given radius
  \item Function needs to return two values
  \end{itemize}
  \begin{lstlisting}
  In[]:  def circle(r):
         """returns area and perimeter of a 
         circle given, the radius r"""

  ....:      pi = 3.14
  ....:      area = pi * r * r
  ....:      perimeter = 2 * pi * r
  ....:      return area, perimeter
  ....:

  In[]:  circle(4)
  In[]:  a, p = circle(6)
  In[]:  print a
  In[]:  print p
  \end{lstlisting}
  \begin{itemize}
  \item Any number of values can be returned
  \end{itemize}
\end{frame}

\begin{frame}[fragile]
  \frametitle{What? -- 1}
  \begin{lstlisting}       
  In[]:  def what( n ):           
  ....:      if n < 0: n = -n     
  ....:      while n > 0:         
  ....:          if n % 2 == 1:   
  ....:              return False 
  ....:          n /= 10          
  ....:      return True          
  ....:
  \end{lstlisting}         
\end{frame}

\begin{frame}[fragile]
  \frametitle{What? -- 2}
  \begin{lstlisting}
  In[]:  def what( n ):
  ....:      i = 1
  ....:      while i * i < n:
  ....:          i += 1
  ....:      return i * i == n, i
  ....:
  \end{lstlisting}
\end{frame}

\subsection*{Default \& Keyword Arguments}

\begin{frame}[fragile]
  \frametitle{Default arguments}
  \begin{lstlisting}
  In[]: round(2.484)
  In[]: round(2.484, 2)

  In[]:  s.split() # split on spaces
  In[]:  s.split(';') # split on ';'

  In[]: range(10) # returns numbers from 0 to 9
  In[]: range(1, 10) # returns numbers from 1 to 9
  In[]: range(1, 10, 2) # returns odd numbers from 1 to 9
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Default arguments \ldots}
  \begin{lstlisting}
  In[]:  def welcome(greet, name="World"):
  ....:      print greet, name
  ....:

  In[]: welcome("Hi", "Guido")
  In[]: welcome("Hello")
  \end{lstlisting}
  \begin{itemize}
  \item Arguments with default values, should be placed at the end
  \item The following definition is \alert{WRONG}
  \end{itemize}
  \begin{lstlisting}
  In[]:  def welcome(name="World", greet):
  ....:      print greet, name
  ....:
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Keyword Arguments}
  \begin{lstlisting}
  In[]:  def welcome(greet, name="World"):
  ....:      print greet, name
  ....:

  In[]:  welcome("Hello", "James")

  In[]: welcome("Hi", name="Guido")

  In[]: welcome(name="Guido", greet="Hey")

  In[]:  welcome(name="Guido", "Hey")
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Built-in functions}
  \begin{itemize}
  \item Variety of built-in functions are available
  \item \texttt{abs, any, all, len, max, min}
  \item \texttt{pow, range, sum, type}
  \item Refer here:
    \url{http://docs.python.org/library/functions.html}
  \end{itemize}
\end{frame}

\subsection*{Variable Scope}

\begin{frame}[fragile]
  \frametitle{Arguments are local}
  \begin{lstlisting}
   In[]: def change(q):
   ....:     q = 10
   ....:     print q
   ....:

  In[]:  change(1)
  In[]:  print q
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Variables inside function are local}
  \begin{lstlisting}
  In[]:  n = 5
  In[]:  def change():
  ....:      n = 10
  ....:      print n
  ....:
  In[]:  change()
  In[]:  print n
  \end{lstlisting}
  \begin{itemize}
  \item Use the \texttt{global} statement to assign to global variables
  \end{itemize}
  \begin{lstlisting}
  In[]:  def change():
  ....:      global n
  ....:      n = 10
  ....:      print n
  ....:
  In[]:  change()
  In[]:  print n
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{global}
 \begin{itemize}
  \item Use the \texttt{global} statement to assign to global variables
  \end{itemize}
  \begin{lstlisting}
  In[]:  def change():
  ....:      global n
  ....:      n = 10
  ....:      print n
  ....:
  In[]:  change()
  In[]:  print n
  \end{lstlisting}
\end{frame}  

\begin{frame}[fragile]
  \frametitle{Mutable variables}
  \begin{itemize}
  \item Behavior is different when assigning to a list element/slice
  \item Python looks up for the name, from innermost scope outwards,
    until the name is found
  \end{itemize}
  \begin{lstlisting}
  In[]:  name = ['Mr.', 'Steve', 'Gosling']
  In[]:  def change_name():
  ....:      name[0] = 'Dr.'
  ....:
  In[]: change_name()
  In[]: print name
  \end{lstlisting}
\end{frame}

\begin{frame}[fragile]
  \frametitle{Passing Arguments \ldots}
  \begin{lstlisting}
  In[]:  n = 5
  In[]:  def change(n):
  ....:      n = 10
  ....:      print "n = %s inside change " %n
  ....:
  In[]:  change(n)
  In[]:  print n
  \end{lstlisting}
  
  \begin{lstlisting}
  In[]:  name = ['Mr.', 'Steve', 'Gosling']
  In[]:  def change_name(n):
  ....:      n[0] = 'Dr.'
  ....:      print "n = %s inside change_name" %n
  ....:
  In[]:  change_name(name)
  In[]:  print name
  \end{lstlisting}
\end{frame}