You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

3 years ago
1234567891011121314151617181920212223
  1. # TODO
  2. Faire un dessin pour illustrer:
  3. ```python
  4. fruits = ["pomme", "poire"]
  5. x = fruits[0]
  6. x = "orange"
  7. ```
  8. Faire un dessin pour illustrer
  9. sequence, répétition, sélection
  10. ```python
  11. i = 0
  12. while i < 3:
  13. print(i)
  14. i = i + 1
  15. if i == 2:
  16. print("deux")
  17. ```
  18. Pareil avec une vue "debuggeur"