format_invoice_line(item, qty, price) that returns a single formatted line using an f-string: the item name left-aligned in a 10-character field, the quantity right-aligned in a 5-character field, and the price right-aligned in a 10-character field with exactly 2 decimal places.item = 'Mouse', qty = 2, price = 799.5
'Mouse 2 799.50'
'Mouse' padded to 10 chars, '2' right-aligned in 5 chars, '799.50' right-aligned in 10 chars.
f-string alignment syntax: `{value:<width}` for left, `{value:>width}` for right.
Add `.2f` after the width for fixed decimal places: `{price:>10.2f}`.