Fonctions Flashcards

1
Q

Définir une fonction?

A

def ma_fonction(x):
return x * 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Fonctions avec plusieurs arguments?

A

def addition(a, b):
return a + b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Valeurs par défaut?

A

def saluer(nom=”Inconnu”):
print(f”Bonjour, {nom}!”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

. Retourner plusieurs valeurs

A

def calculer(a, b):
somme = a + b
produit = a * b
return somme, produit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly