Functions
Last updated
Last updated
In Python 3, we are able to create custom functions that are much similar to the built-in functions we have encountered
These functions are callable and can output results to our liking
This allows us to organize our code when our projects become more complex
In this unit we will only cover introductory level content for functions (returning values, predetermined arguments, and nested functions).
Function: a block of organized, reusable code that is usually used to perform single and related action.
Similar concepts: methods, subroutines and procedures
Mathematical Functions vs Programming Functions
Mathematical Function: Functions we learn in math classes, such as Grade 11 Functions, are by in nature following the laws of mathematics. These functions (Quadratic, Rational, Trignometric and Logarithmic to name a few) are all about relating an input to an output. They also must follow the these rules:
One input must have only one output
Multiple inputs are allowed to have same output
Programming Function: In computer science, a function is a self contained module of code. It is not restricted to the rules of mathematical function unless you want it do be.
Clean Code: We want organize a solution to problem or a part of a problem into a single function
Algorithms: Without functions, we cannot express algorithms properly
Reusability: Functions prevent us from repeating code you’ve written before
Single Serving: Functions prevent overloaded programs that look like spaghetti
How to use docstrings
Write a short single sentence on what the function does
List each arguments and describe what they are and the datatype
Describe the return statements data type and what it returned.
A docstring should give enough information to write a call to the function without reading the function’s code. The docstring should describe the function’s calling syntax and its semantics, but generally not its implementation details, unless those details are relevant to how the function is to be used. (Source)
Function Rules:
def
is the keyword designated to help us define a custom function
a function must have a callable name … it is recommended to use name that is not built-in function or keywords for Python.
(arg1, arg2, arg3):
This is state our function inputs. The number of inputs a function require is up to you. A proper definition for function inputs are called arguments.
We can also write a descriptor for our function by using triple single(') or double(") quotation marks
return
is a keyword designed for functions. When a function is done executing its code, we can use return to help us grab the result of our function
Let’s create an example function for the area of a circle.
We defined a function called areaCircle
There are 2 arguments
radius
pi
There is a docstring trapped inside triple single quotation marks
Variable area inside the function is calculated by using the argument variables for the function
We use the return keyword to help us grab the resulting variable called: area
After the function has been defined we created our new variables of my_radius and pi
please note that the new variable pi = 3.14159 does not conflict with the function’s argument variable
We can use these new variables to be the explicit arguments for when we call the function
We calculated the result for two variables: my_circle_area and my_circle_area2 by assigning it to the result of us calling our defined function
When the function areaCircle is called, it will take the given arguments to calculate the function’s area variable
Once the calculation is finished, it will be returned back to the variable and assigned with the result