diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 73f558494bccfe669522585d5c3c5c23f75a0f36..202b62ba294e612983d9cd8ae504fc77589499a2 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -4,14 +4,36 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Test 1" + "toy_notebook_fr\n", + "===============\n", + "\n", + "March 28, 2019\n", + "----------------------\n", + "\n", + "# À propos du calcul de pi\n", + "\n", + "## En demandant à la lib maths\n", + "\n", + "Mon ordinateur m'indique que pi vaut _approximativement_" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 4, "metadata": {}, + "outputs": [ + { + "ename": "IndentationError", + "evalue": "unexpected indent (, line 2)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m2\u001b[0m\n\u001b[0;31m print(pi)\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mIndentationError\u001b[0m\u001b[0;31m:\u001b[0m unexpected indent\n" + ] + } + ], "source": [ - "Test 2" + "from math import *\n", + " print(pi)" ] }, {