diff --git a/module1/exo2/fichier-markdown.md b/module1/exo2/fichier-markdown.md index 30d74d258442c7c65512eafab474568dd706c430..2b76a4e5cbecae2350f14bb20b0a255e3b6e9231 100644 --- a/module1/exo2/fichier-markdown.md +++ b/module1/exo2/fichier-markdown.md @@ -1 +1,45 @@ -test \ No newline at end of file +# Partie 1 +## sous-partue 1: texte + +une phrase sans rien +*Une phrase en italique* +__Une phrase en gras__ + +[fun-mooc](https://lms.fun-mooc.fr) + +``` + +print("Hello world!") + +``` + +## Sous-partie 2 : listes + +*Liste à puce* + + -item 1 + -item 1a + -item 1b + -item 2 + -item 3 + + *Liste numérotée* + 1. Item + 2. Item + 3. Item + +## Sous-partie 3 : code +``` +ax = plt.axes() +plt.ylim(0,50) +plt.xlim(0,25) + +n=1.5 +R=0.10 + +phi=(n-1)/R +AB=2 + +D=4 +#point de départ +```