您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
此存儲庫已封存,您能瀏覽檔案及複製此存儲庫,但不能推送、建立問題及拉取請求。

3 年之前
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"