Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Toll roads have different fees based on the time of day and on weekends. Write a function calc _ toll ( ) that has three
Toll roads have different fees based on the time of day and on weekends. Write a function calctoll that has three parameters: the current hour of time int whether the time is morning boolean and whether the day is a weekend boolean The function returns the correct toll fee float based on the chart below.
Weekday Tolls
Before : am $
: am to : am $
: am to : pm $
: pm to : pm $
Starting : pm $
Weekend Tolls
Before : am $
: am to : pm $
Starting : pm $
Ex: The function calls below, with the given arguments, will return the following toll fees:
calctoll True, False returns
calctoll False, False returns
calctoll False, True returns
calctoll True, True returns
PYTHON PLEASE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started