Answer:
The ans will be given in the python script below. A picture of the answer is also attached
Explanation:
print("Welcome To Garage Parking Fee Calculator")
hours = float(input("Type the number of hours parked : "))
#fee per hour
rate = 2.40
#multiply rate per hour by the number of hours inputted
price = rate * hours
if price < 6:
price = 6
if price > 20:
price = 20
print("Parking fee is: $", +price)