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')
 
 
To check your solution you need to sign in
Sign in to continue