{ "cells": [ { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Collections\n", "\n", "- Lists, Tuples, Dictionaries\n", "- Indexing\n", "- Mutating\n", "- `chr` and `ord`" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true, "jupyter": { "outputs_hidden": true }, "slideshow": { "slide_type": "slide" } }, "source": [ "## Collections: Lists " ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "fragment" } }, "source": [ "
in operator asks whether an element is present inside a collection, and returns a boolean answer. \n",
"ord returns the unicode code point for a one-character string.\n",
"chr returns the character encoding of a code point. \n",
"