1. Create a variable is_discounted and assign it the value True.

  2. Create a variable discount_rate with a float value (e.g., 0.15).

  3. Print the message: "Discount Available: True, Rate: 15%".

is_discounted = True

discount_rate = 0.15

print("Discount Available:",is_discounted,"Rate:",discount_rate * 100,"%")