您最多选择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()