Challenge 1
Tâche
Swipe to start coding
You have to rewrite this code so it's permissible.
Solution
9
1
2
3
4
def function(z, w, x = 10, y = 20):
print(x + y + z + w)
function(5, 10)
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 2
9
1
2
3
4
def function(x = 10, y = 20, z, w):
print(x + y + z + w)
function(5, 10)
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion