no commit message

parent 1933d256
...@@ -7,15 +7,28 @@ ...@@ -7,15 +7,28 @@
"hidePrompt": true "hidePrompt": true
}, },
"source": [ "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", "cell_type": "code",
"execution_count": null, "execution_count": 3,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [
"source": [] {
"name": "stdout",
"output_type": "stream",
"text": [
"3.141592653589793\n"
]
}
],
"source": [
"from math import *\n",
"print(pi)"
]
}, },
{ {
"cell_type": "code", "cell_type": "code",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment