From 56f486d9f7ff20648f701b8a6ff1ee71fd7c6f81 Mon Sep 17 00:00:00 2001 From: manetta Date: Wed, 7 Oct 2020 12:16:42 +0200 Subject: [PATCH] adding the hotseat notebook --- hotseat.ipynb | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 hotseat.ipynb diff --git a/hotseat.ipynb b/hotseat.ipynb new file mode 100644 index 0000000..eeff460 --- /dev/null +++ b/hotseat.ipynb @@ -0,0 +1,78 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# hotseat ..............." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "\n", + "names = ['jacopo', 'louisa', 'martin', 'federico', 'nami', 'euna', 'clara', 'camilo', 'kendal', 'floor']" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# There we go\n", + "hotseat = random.choice(names)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "kendal\n" + ] + } + ], + "source": [ + "# 3. 2. 1. .....\n", + "print(hotseat)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}