Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
E2L_Ivry
/
cours-python
Segui
5
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
More functions for 03.py
master
Dimitri Merejkowsky
6 anni fa
parent
cad8540175
commit
beecdbbb34
2 ha cambiato i file
con
17 aggiunte
e
8 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+0
-8
sources/03-add.py
+17
-0
sources/03-fonctions.py
+ 0
- 8
sources/03-add.py
Vedi File
@@ -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
Vedi File
@@ -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)