Arguments mixtes
Quel sera le résultat du programme suivant ?
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')Quel sera le résultat du programme suivant ?
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')