{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 11. Functions\n", "\n", "**Functions** are reusable blocks of code that perform specific tasks. They are a fundamental building block of Python programming, allowing you to organize your code, improve readability, and promote reusability.\n", "\n", "We'll learn about the following topics:\n", "\n", " - [11.1. Creating Functions](#Creating_Functions)\n", " - [11.2. Nested Functions](#Nested_Functions)\n", " - [11.3. Special Built-in Functions (map, filter, lambda, all, any)](#Special_Builtin_Functions)\n", " - [11.4. *args and *kargs](#args_kargs)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n",
"
\n",
"