Challenge 1
Taak
Swipe to start coding
You have to rewrite this code so it's permissible.
Oplossing
9
1
2
3
4
def function(z, w, x = 10, y = 20):
print(x + y + z + w)
function(5, 10)
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 3. Hoofdstuk 2
9
1
2
3
4
def function(x = 10, y = 20, z, w):
print(x + y + z + w)
function(5, 10)
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.