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.
|
1234567891011121314151617181920212223242526 |
- # Exercice: découper la fonction servir_le_thé() en trois
- from cuisine import *
-
-
- def servir_le_thé():
- # Faire bouillir l'eau
- allumer_bouilloire()
- attendre_que_ca_bout()
- eteindre_bouilloire()
-
- # Remplir une tasse
- ouvrir_placard()
- prendre_une_tasse()
- mettre_eau_dans_tasse()
- mettre_thé_dans_tasse()
- attendre_que_ca_infuse()
- fermer_placard()
-
- # Servir sur un plateau
- prendre_un_plateau()
- mettre_tasse_sur_plateau()
- mettre_sucrière_sur_plateau()
- apporter_le_plateau()
-
-
- servir_le_thé()
|