-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsec-function.ptx
298 lines (254 loc) · 7.31 KB
/
sec-function.ptx
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
295
296
297
298
<?xml version="1.0" encoding="UTF-8"?>
<!--*****************************************
This is part of Basic Programming
Copyright (C) 2024
Phạm Công Vinh
See the file COPYING for copying conditions.
******************************************-->
<section xml:id="sec-function" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Functions</title>
<objectives>
<ul>
<li>Learn about functions and how to use them.</li>
</ul>
</objectives>
<p>
Again we are met with a familiar concept in mathematics<mdash /><term>functions</term>, which also play a big role in programming.
</p>
<p>
Suppose we have 100 mathematical expressions:
<md>
<mrow>1^2 + 2 \cdot 1 + 1</mrow>
<mrow>2^2 + 2 \cdot 2 + 1</mrow>
<mrow>\vdots</mrow>
<mrow>100^2 + 2 \cdot 100 + 1</mrow>
</md>
We realize they are all quadratics; therefore, we can shorten our representation using a function as follows:
<md>
<mrow>f(x) = x^2 + 2 \cdot x + 1</mrow>
<mrow></mrow>
<mrow>f(1)</mrow>
<mrow>f(2)</mrow>
<mrow>\vdots</mrow>
<mrow>f(100)</mrow>
</md>
</p>
<p>
That is also the essence of <term>functions</term> in programming.
</p>
<definition xml:id="def-function">
<idx><h>Definitions</h><h>of functions</h></idx>
<statement>
<p>
A <term>function</term> is a reusable block of code designed to perform a specific task.
</p>
<p>
A function can accept zero, one, or more <term>inputs</term>, which are also called <term>parameters</term>.
</p>
<p>
A function can return zero, one, or more <term>outputs</term>, which are also called <term>return values</term>.
</p>
<p>
To <term>declare</term> a function is to create a new one.
</p>
<p>
To <term>call</term> a function is to use an existing one.
</p>
</statement>
</definition>
<note>
<idx><h>Notes</h><h>on using functions</h></idx>
<p>
In this section, we will not go into function declaration. Instead, we'll focus on using functions that are built-in or provided by libraries.
</p>
<p>
To read more about function declaration, refer to <xref ref="sec-declare-function" text="type-local"/>.
</p>
</note>
<technology xml:id="syntax-call-function">
<title>Calling a function</title>
<idx><h>Syntax</h><h>of calling functions</h></idx>
<p>
<em>Depending on how a function is declared</em>, we have two ways to call it: <me>{\color{blue} \text{function's name}} \, \text{(input 1, input 2, ...)}</me> or <me>\text{input 1} . \! {\color{blue} \text{function's name}} \, \text{(input 2, input 3, ...)}</me>
</p>
</technology>
<p>
A familiar example is the function <c>print()</c>, which can be called anywhere and with any number of inputs. It then shows them in the terminal.
</p>
<sage language="python">
<input>
print(5)
print()
print(2, -2)
print(1, "Hello World!", 5.5)
</input>
</sage>
<problem>
<pre>
5
2 -2
1 Hello World! 5.5
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function print()</h></idx>
<idx><h>Functions</h><h>print()</h></idx>
<p></p>
<p>
Line 1: We call the function <c>print()</c> with one input <c>5</c>.
</p>
<p>
Line 2: We provide no inputs, so <c>print()</c> outputs an empty line into the terminal.
</p>
<p>
Line 3: We give it two integer inputs <c>2</c> and <c>-2</c>.
</p>
<p>
Line 4: We give it multiple inputs of different data types.
</p>
</investigation>
<p>
Another example is <c>len()</c>, which accepts exactly one input that is a data structure, and it returns the number of elements.
</p>
<aside>
<title>Try It Out</title>
<p>
Does <c>len()</c> work with a string?
</p>
</aside>
<sage language="python">
<input>
arr = [1, 2, 3, 4]
print(len(arr))
</input>
</sage>
<problem>
<pre>
4
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function len()</h></idx>
<idx><h>Functions</h><h>len()</h></idx>
<p>
The function <c>len()</c> receives one input and returns the number of elements.
</p>
</investigation>
<p>
So, <c>len()</c> has more specifications than <c>print()</c>. You have to call it with exactly one input, which must be a data structure. The following examples will return errors:
</p>
<aside>
<title>Try It Out</title>
<p>
Can you fix this example?
</p>
</aside>
<sage language="python">
<input>
arr1 = [1, 2, 3]
arr2 = [4, 5, 6]
print(len(arr1, arr2))
</input>
</sage>
<problem>
<pre>
TypeError
Cell In [1], line 3
...
TypeError: len() takes exactly one argument (2 given)
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function len()</h></idx>
<idx><h>Functions</h><h>len()</h></idx>
<p></p>
<p>The function <c>len()</c> accepts exactly one input, but two parameters were given.</p>
</investigation>
<p>
Another example:
</p>
<sage language="python">
<input>
a = 5
print(len(a))
</input>
</sage>
<problem>
<pre>
TypeError
Cell In [1], line 2
...
TypeError: object of type 'int' has no len()
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function len()</h></idx>
<idx><h>Functions</h><h>len()</h></idx>
<p></p>
<p>
The input of <c>len()</c> must be a data structure, but we are calling it with an <c>int</c>.
</p>
</investigation>
<p>
Our final example is <c>upper()</c>, which follows the second <xref ref="syntax-call-function" text="custom">syntax</xref> for calling a function. In this case, <q>input 1</q> must be a string. And the function returns a new string with every character in uppercase.
</p>
<aside>
<title>Try It Out</title>
<p>
Guess the function that turns a string to all lowercase.
</p>
</aside>
<sage language="python">
<input>
s = "Hello friend!"
print(s.upper())
</input>
</sage>
<problem>
<pre>
HELLO FRIEND!
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function upper()</h></idx>
<idx><h>Functions</h><h>upper()</h></idx>
<p>The function <c>upper()</c> returns a new all-caps string.</p>
</investigation>
<p>
The following produces an error:
</p>
<sage language="python">
<input>
a = 5
print(a.upper())
</input>
</sage>
<problem>
<pre>
AttributeError
Cell In [1], line 2
...
AttributeError: 'int' object has no attribute 'upper'
</pre>
</problem>
<investigation>
<idx><h>Code examples</h><h>function upper()</h></idx>
<idx><h>Functions</h><h>upper()</h></idx>
<p></p>
<p>
The function <c>upper()</c> accepts exactly one input of type <c>str</c>, but we are giving it an <c>int</c>.
</p>
</investigation>
<p>
<cd>
</cd>
</p>
<exploration>
<title>Basic Programming <mdash /> Part 10: Functions</title>
<idx><h>Videos</h><h>part 10</h></idx>
<p>
Coming soon.
</p>
<video youtubeplaylist="PLBLdRr-v59vwnKvmvLtcgmAnsb2K1Ta_M" />
</exploration>
</section>