From 09c56da4797c49fa18b5bf2a86f35eb37babf1e7 Mon Sep 17 00:00:00 2001 From: b7f83e57ee680cd19ffe83a6b6f118f2 Date: Sat, 17 Oct 2020 14:50:59 +0000 Subject: [PATCH] exercice jmonaldi1 --- module2/exo1/jmonaldi1.ipynb | 71 ++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 module2/exo1/jmonaldi1.ipynb diff --git a/module2/exo1/jmonaldi1.ipynb b/module2/exo1/jmonaldi1.ipynb new file mode 100644 index 0000000..eb37049 --- /dev/null +++ b/module2/exo1/jmonaldi1.ipynb @@ -0,0 +1,71 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# toy_notebook_fr" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "March 28, 2019" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A propos du calcul de \\pi" + ] + }, + { + "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, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} -- 2.18.1