Explorar el Código

more proofread

master
Dimitri Merejkowsky hace 4 años
padre
commit
559939786a
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. +1
    -0
      cours/source/18-functions-02/01-introduction.rst

+ 1
- 0
cours/source/18-functions-02/01-introduction.rst Ver fichero

@@ -110,6 +110,7 @@ On peut aussi définir une fonction dans une autre fonction::
def affiche_message(message):
def affiche():
print(message)
affiche()

affiche_message("Bonjour")
# affiche: Bonjour