{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Functions\n",
"\n",
"Definition\n",
"\n",
"Call\n",
"\n",
"Function Arguments\n",
"\n",
"Default Arguments\n",
"\n",
"Docstrings\n",
"\n",
"Scope\n",
"\n",
"Special functions Lambda, Map, and Filter\n",
"\n",
"Recursion\n",
"\n",
"Functional Programming and Reference Functions"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"def myfunction(): # definition of function\n",
" print(\"Hey!!\")"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"