Mixed arguments
What will be the output of the following program?
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')
Introduction to Python
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')