이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
E2L_Ivry
/
cours-python
보기
5
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
More functions for 03.py
master
Dimitri Merejkowsky
6 년 전
부모
cad8540175
커밋
beecdbbb34
2개의 변경된 파일
과
17개의 추가작업
그리고
8개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-8
sources/03-add.py
+17
-0
sources/03-fonctions.py
+ 0
- 8
sources/03-add.py
파일 보기
@@ -1,8 +0,0 @@
# ceci est un commentaire
def add(a, b):
return a + b
a = 1
b = 2
c = add(a, b)
print(c)
+ 17
- 0
sources/03-fonctions.py
파일 보기
@@ -0,0 +1,17 @@
def add(a, b):
return a + b
a = 1
b = 2
c = add(a, b)
print(c)
def greet(name, shout=False):
print("Hello,", end=" ")
print(name, end="")
if shout:
print("!", end="")
print("", end="\n")
greet("John")
greet("Jane", shout=True)