diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 93c0b0f77f738d57ed7a4425b14fb7d1adf0c031..1937931c6ab7e758745c43fac2fa02134560689b 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -9,12 +9,32 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "hideCode": false + }, "source": [ "## En demandant à la lib maths\n", "Mon ordinateur m'indique que $\\pi$ vaut *approximativement*" ] }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.141592653589793\n" + ] + } + ], + "source": [ + "from math import *\n", + "print(pi)" + ] + }, { "cell_type": "code", "execution_count": null,