book_ticket(destination, seat_class="Economy", meal=True) that returns a formatted string "{destination} - {seat_class} - Meal: {meal}". Demonstrate that keyword arguments can be supplied out of order relative to their positions, as long as they are named.book_ticket("Delhi")Delhi - Economy - Meal: True
Both seat_class and meal use their defaults.
book_ticket("Mumbai", meal=False, seat_class="Business")Mumbai - Business - Meal: False
Keyword arguments meal and seat_class are supplied out of their declared order, which is legal.
Keyword arguments can appear in any order at the call site as long as they are named.
Use an f-string to format the final result.