From 2881a2eec44b46238da8a3df003047e8672534f8 Mon Sep 17 00:00:00 2001 From: 5bc808aac88587dbd652b84ec257c92e <5bc808aac88587dbd652b84ec257c92e@app-learninglab.inria.fr> Date: Tue, 14 Sep 2021 18:09:11 +0000 Subject: [PATCH] no commit message --- module2/exo1/toy_notebook_fr.ipynb | 34 +++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 41b1fea..d61a931 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -1,5 +1,38 @@ { "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# À propos du calcul de $\\pi$" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## En demandant à la lib maths\n", + "Mon ordinateur m'indique que $\\pi$ vaut *approximativement*" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.141592653589793\n" + ] + } + ], + "source": [ + "from math import *\n", + "print(pi)" + ] + }, { "cell_type": "code", "execution_count": null, @@ -9,7 +42,6 @@ } ], "metadata": { - "celltoolbar": "Hide code", "kernelspec": { "display_name": "Python 3", "language": "python", -- 2.18.1