Create the global variable discount inside the for loop, then display it outside of the loop.
discount
Make sure to pick discount = 10, followed by print(f"Discount: {discount}").
discount = 10
print(f"Discount: {discount}")