From bf8f65048392b3f0bcff2a5e8b78fb515b309448 Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Thu, 1 Apr 2021 19:19:09 +0200 Subject: [PATCH] Ajout d'un TODO --- TODO.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 TODO.md diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..d82d37b --- /dev/null +++ b/TODO.md @@ -0,0 +1,23 @@ +# TODO + +Faire un dessin pour illustrer: + +```python +fruits = ["pomme", "poire"] +x = fruits[0] +x = "orange" +``` + +Faire un dessin pour illustrer +sequence, répétition, sélection + +```python +i = 0 +while i < 3: + print(i) + i = i + 1 + if i == 2: + print("deux") +``` + +Pareil avec une vue "debuggeur"