|
|
## Functions:
|
|
|
|
|
|
* use functions if you have to do the same task several times
|
|
|
|
|
|
|
|
|
```python
|
|
|
def my_funct(args, default_arg=1):
|
|
|
"""Doc string"""
|
|
|
function_body = 'That is were the magic happens'
|
|
|
return function_body
|
|
|
```
|
|
|
|
|
|
## Built ins:
|
|
|
|
|
|
* already known to the python interpreter
|
|
|
* full [list](https://docs.python.org/3/library/functions.html) of python built in functions |
|
|
\ No newline at end of file |