This website works better with JavaScript.
Home
Explore
Help
Sign In
E2L_Ivry
/
cours-python
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
more proofread
master
Dimitri Merejkowsky
4 years ago
parent
d03272df00
commit
559939786a
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
cours/source/18-functions-02/01-introduction.rst
+ 1
- 0
cours/source/18-functions-02/01-introduction.rst
View File
@@ -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