Changes
Page history
Updated 20180528_Functions_built_ins (markdown)
authored
May 28, 2018
by
Jorin Diemer
Show whitespace changes
Inline
Side-by-side
functions_built_ins.md
0 → 100644
View page @
e10dad22
## 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