混合引数
次のプログラムの出力はどうなるでしょうか?
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')次のプログラムの出力はどうなるでしょうか?
def print_gift(name, price, size):
print(f'{name} - $${price} of size {size}')
print_gift('Lego', price=100, '3x4')