diff --git a/module2/exo1/toy_notebook_en.ipynb b/module2/exo1/toy_notebook_en.ipynb index 66687e5b246730a5ce03eb49264162616c5557e8..99e79f406701002fa23660b29dbc065bb600366a 100644 --- a/module2/exo1/toy_notebook_en.ipynb +++ b/module2/exo1/toy_notebook_en.ipynb @@ -7,15 +7,28 @@ "hidePrompt": true }, "source": [ - "# On the computation of $\\pi$" + "# On the computation of $\\pi$\n", + "## Asking the maths library\n", + "My computer tells me that $\\pi$ is *approximatively*" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.141592653589793\n" + ] + } + ], + "source": [ + "from math import *\n", + "print(pi)" + ] }, { "cell_type": "code",