Topic 3 Flashcards

1
Q

functions have … and …

A

input
output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

print(object,…)

A

takes 1 or more object and prints their string representations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

len(object)

A

takes and object as input and counts the number of items or elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

decomposition

A

the act of taking a big problem and breaking into small parts that are more easily solved

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

abstraction

A

suppress unnecessary details
the abstraction of a function is what it accomplishes, what it requires as input and what it will produce as output
us
uses docstrings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

docstrings

A

or function specifications that we need to know to use the function
reduces risk of mistakes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

function characteristics

A

def function_name(<parameters>):
docstring
<codeblock>
return <value>
function_name(<input_arguments>)</input_arguments></value></codeblock></parameters>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

f the return statement contains an expression, … before
the value is returned

A

it is evaluated first,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A return statement has meaning … a function only

A

inside

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

In Python, every function … .If there are no return statements, then it returns …

A

returns something
None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The return statement … . A function can have multiple return statements. When any one is executed, …

A

terminates the function execution
the function terminates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how to indicate multiple values in a single return statement

A

separate by a comma

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

tuple

A

a collection of objects separated by commas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

positional parameters

A

required, gets assumes as per sequence (pos1, pos2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

optional parameters

A

if not given, default values assumed (opt1=10, opt2=1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Docstring format

A
  1. Description section - describes the purpose of the function
  2. Argument section - lists and explains input
  3. Return section - lists and explains return values
  4. Raises, Examples sections (we have not covered this)
17
Q

Scope

A

A variable is only available from inside the region it is created. This is called scope

18
Q

Global scope

A

A variable created in the main body of the Python code is a global variable and belongs to the global scope.

19
Q

Local scope

A

A variable created inside a function belongs to the local scope of that function and can only be used inside that function.