이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
E2L_Ivry
/
cours-python
보기
5
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
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