Topic 3 Flashcards
functions have … and …
input
output
print(object,…)
takes 1 or more object and prints their string representations
len(object)
takes and object as input and counts the number of items or elements
decomposition
the act of taking a big problem and breaking into small parts that are more easily solved
abstraction
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
docstrings
or function specifications that we need to know to use the function
reduces risk of mistakes
function characteristics
def function_name(<parameters>):
docstring
<codeblock>
return <value>
function_name(<input_arguments>)</input_arguments></value></codeblock></parameters>
f the return statement contains an expression, … before
the value is returned
it is evaluated first,
A return statement has meaning … a function only
inside
In Python, every function … .If there are no return statements, then it returns …
returns something
None
The return statement … . A function can have multiple return statements. When any one is executed, …
terminates the function execution
the function terminates
how to indicate multiple values in a single return statement
separate by a comma
tuple
a collection of objects separated by commas
positional parameters
required, gets assumes as per sequence (pos1, pos2)
optional parameters
if not given, default values assumed (opt1=10, opt2=1)
Docstring format
- Description section - describes the purpose of the function
- Argument section - lists and explains input
- Return section - lists and explains return values
- Raises, Examples sections (we have not covered this)
Scope
A variable is only available from inside the region it is created. This is called scope
Global scope
A variable created in the main body of the Python code is a global variable and belongs to the global scope.
Local scope
A variable created inside a function belongs to the local scope of that function and can only be used inside that function.