Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
E2L_Ivry
/
cours-python
Seguir
5
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
More functions for 03.py
master
Dimitri Merejkowsky
hace 6 años
padre
cad8540175
commit
beecdbbb34
Se han
modificado 2 ficheros
con
17 adiciones
y
8 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+0
-8
sources/03-add.py
+17
-0
sources/03-fonctions.py
+ 0
- 8
sources/03-add.py
Ver fichero
@@ -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
Ver fichero
@@ -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)