diff --git a/module1/exo2/fichier-markdown.md b/module1/exo2/fichier-markdown.md index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..6c5b428f5d37866aea6821c8d260e9c2d30a9a8f 100644 --- a/module1/exo2/fichier-markdown.md +++ b/module1/exo2/fichier-markdown.md @@ -0,0 +1,27 @@ +# Partie 1 +## Sous-partie 1 = sous-partie 1 : +Une phrase sans rien +*Une phrase en italique* +**Une phrase en gras** +[Un lien vers fun-mooc.fr](https://www.fun-mooc.fr/) +Une ligne de $_(code)$ + +## Sous-partie 2 = des listes : +Liste a puces non ordonnee : +- item 1 + - sous-item 1 + - sous-item 2 +- item 2 +- item 3 + +Liste numérotée : +1. item 1 +2. item 2 +3. item 3 + +## Sous-partie 3 = quelques lignes de code : + +To print some text with Python, you should use the `print()` function. +``` +print("Hello world!") +```