{ "cells": [ { "cell_type": "raw", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ ".. meta::\n", " :description: Topic: the basics of iterables in python, Difficulty: Medium, Category: Section\n", " :keywords: iterables, max, min, sum, all, any, itertools, enumerate, unpack" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Iterables\n", "Our encounter with for-loops introduced the term *iterable* - an object that can be \"iterated over\", such as in a for-loop.\n", "\n", "