選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 
 
 

28 行
431 B

  1. largeur = 10
  2. def affiche_ligne(début, fin):
  3. blancs_au_début = " " * début
  4. largeur_ligne = fin - début
  5. dièses = "#" * largeur_ligne
  6. print(blancs_au_début + dièses)
  7. def affiche_feuilles():
  8. affiche_ligne(5, 6)
  9. affiche_ligne(4, 7)
  10. # à compléter
  11. def affiche_pied():
  12. affiche_ligne(5, 6)
  13. # à compléter
  14. def affiche_sapin():
  15. affiche_feuilles()
  16. affiche_pied()
  17. affiche_sapin()