Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please write this in python as the program shown Write a function, computcFare,that takes as two parameters: the zone and the ticket type, and returns

image text in transcribedPlease write this in python as the program shown

Write a function, computcFare,that takes as two parameters: the zone and the ticket type, and returns the MetroNorth Railroad fare o If the zone is 1 and the ticket type is "peak', the fare is 6.75 o If the zone is 1 and the ticket type is "off-peak", the fare is 5.00 o If the zone is 1 and the ticket type is "senior", the fare is 3.25 o If the zone is 2 and the ticket type is "peak', the fare is 7.50 o If the zone is 2 and the ticket type is "off-peak", the fare is 5.75 o If the zone is 2 and the ticket type is "senior", the fare is 3.75 o If the zone is 3 and the ticket type is "peak', the fare is 9.25 o If the zone is 3 and the ticket type is "off-peak", the fare is 7.00 o If the zone is 3 and the ticket type is "senior", the fare is 4.50 o If the zone is greater than 3, return a negative number (since your calculator does not handle inputs that high) A template program, MNRtransit.py, is available on the CSci 127 repo on github. The grading script does not run the whole program, but instead tests your function separately (unit tests) to determine correctness. As such, the name of the function must match exactly (else, the scripts cannot find it) A sample run: Enter the number of zonea: 2 Enter the ticket type (peak/off-peak): off-peak The fare is 5.75 And another: Enter the number of zonea: 6 Enter the ticket type (peak/off-peak): pea The fare is -1

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Apache Cassandra Development

Authors: Vivek Mishra

1st Edition

1484201426, 9781484201428

More Books

Students also viewed these Databases questions