소스 검색

More functions for 03.py

master
Dimitri Merejkowsky 6 년 전
부모
커밋
beecdbbb34
2개의 변경된 파일17개의 추가작업 그리고 8개의 파일을 삭제
  1. +0
    -8
      sources/03-add.py
  2. +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)