From 288c610864ab555c0753f5a7bf99550befadfad4 Mon Sep 17 00:00:00 2001 From: 31c9c487dd4221d8a6d9e1f2d3025b15 <31c9c487dd4221d8a6d9e1f2d3025b15@app-learninglab.inria.fr> Date: Thu, 30 Mar 2023 15:57:41 +0000 Subject: [PATCH] no commit message --- module2/exo1/toy_notebook_fr.ipynb | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 064cad3..e8bc309 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -20,7 +20,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# À propos du calcul de $\\pi$" + "## À propos du calcul de $\\pi$" ] }, { @@ -31,6 +31,24 @@ "Mon ordinateur m'indique que $\\pi$ vaut *approximativement*" ] }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.141592653589793\n" + ] + } + ], + "source": [ + "In [1]: from math import *\n", + "print(pi)\n" + ] + }, { "cell_type": "code", "execution_count": null, -- 2.18.1