From 7130741e0bef4701e8a24949967f35d2be2db16a Mon Sep 17 00:00:00 2001 From: f8dc60cab5180566667b00ce62a51ae7 Date: Fri, 13 Jun 2025 08:06:31 +0000 Subject: [PATCH] Ajout du notebook toy_notebook.ipynb --- module2/exo1/toy_notebook_fr.ipynb | 104 ++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 3 deletions(-) diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 0bbbe37..6903aa4 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -1,5 +1,104 @@ { - "cells": [], + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Some mathematical calculations" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.8" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def f(x,y):\n", + " if y != 0:\n", + " return x/y\n", + " else:\n", + " return x/(y+1e-9)\n", + "\n", + "f(4,5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + " $$\\int_0^\\infty e^{-x^2} dx = \\frac{\\sqrt{\\pi}}{2}$$" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Partie 1: Creation of the list" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**A bullet list**:\n", + "\n", + "- the first ellemnt\n", + " -water\n", + " -LNAPL\n", + "\n", + "- the second element\n", + " -SER\n", + " -Polymer flooding\n", + "\n", + "**A nummbered list**:\n", + "\n", + "1. the first element\n", + "2. the second element" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# A code block" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello, world!\n" + ] + } + ], + "source": [ + "print(\"Hello, world!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], "metadata": { "kernelspec": { "display_name": "Python 3", @@ -16,10 +115,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.3" + "version": "3.6.4" } }, "nbformat": 4, "nbformat_minor": 2 } - -- 2.18.1