This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
E2L_Ivry
/
cours-python
Прати
5
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
more proofread
master
Dimitri Merejkowsky
пре 4 година
родитељ
d03272df00
комит
559939786a
1 измењених фајлова
са
1 додато
и
0 уклоњено
Подељен поглед
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
Прегледај датотеку
@@ -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