From a1cf6ba7126ceb340d629b79ca8e4ae39f8096ce Mon Sep 17 00:00:00 2001 From: f8dc60cab5180566667b00ce62a51ae7 Date: Fri, 13 Jun 2025 08:02:09 +0000 Subject: [PATCH] Ajout du notebook toy_notebook.ipynb --- module1/exo2/.ipynb | 113 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 module1/exo2/.ipynb diff --git a/module1/exo2/.ipynb b/module1/exo2/.ipynb new file mode 100644 index 0000000..7b7ef1f --- /dev/null +++ b/module1/exo2/.ipynb @@ -0,0 +1,113 @@ +{ + "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": "markdown", + "metadata": {}, + "source": [ + "print(\"Hello, world!\")" + ] + }, + { + "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