Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Python function to run a Parking Lot (PL) simulation, called PLSimulation, which takes four integers as parameters: The first parameter (minArriving) is

Write a Python function to run a Parking Lot (PL) simulation, called PLSimulation, which takes four integers as parameters: The first parameter (minArriving) is the minimum number of cars that can park in the PL during one hour. The second parameter (maxArriving) is the maximum that can park during one hour. The third parameter (maxLeaving) is the maximum number of cars that may leave the PL during one hour. The fourth parameter (hours) is the number of hours to run the simulation. Your function should simulate parking and leaving cars for the specified number of hours. In each hour, the following occurs in this order: 1. A random number of cars arrive, ready to park (between the minimum and maximum). That number is added to a count of the number waiting to park. 2. The maximum number of cars that may leave, allowing the same number of cars to park, so that number is subtracted from the count of the number waiting to park (if there are that many waiting to park). Initially, the number of cars waiting to park is O. To generate a random number of cars each hour, use the randrange function, which takes two integer parameters, and which must be imported from the random module. After the simulation is over, write a report giving the car arrival rate (between the minimum and maximum), the car departure rate, and the number of cars waiting to park after the simulation has run for the specified number of hours (hours). Write a Python function to run a Parking Lot (PL) simulation, called PLSimulation, which takes four integers as parameters: The first parameter (minArriving) is the minimum number of cars that can park in the PL during one hour. The second parameter (maxArriving) is the maximum that can park during one hour. The third parameter (maxLeaving) is the maximum number of cars that may leave the PL during one hour. The fourth parameter (hours) is the number of hours to run the simulation. Your function should simulate parking and leaving cars for the specified number of hours. In each hour, the following occurs in this order: 1. A random number of cars arrive, ready to park (between the minimum and maximum). That number is added to a count of the number waiting to park. 2. The maximum number of cars that may leave, allowing the same number of cars to park, so that number is subtracted from the count of the number waiting to park (if there are that many waiting to park). Initially, the number of cars waiting to park is O. To generate a random number of cars each hour, use the randrange function, which takes two integer parameters, and which must be imported from the random module. After the simulation is over, write a report giving the car arrival rate (between the minimum and maximum), the car departure rate, and the number of cars waiting to park after the simulation has run for the specified number of hours (hours).

Step by Step Solution

3.38 Rating (151 Votes )

There are 3 Steps involved in it

Step: 1

import random def PLSimulationminArriving maxArriving maxLeaving hours waitingtopark 0 totalarrivals 0 totaldepartures 0 for hour in range1 hours 1 Step 1 Generate a random number of cars arriving bet... 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

Smith and Roberson Business Law

Authors: Richard A. Mann, Barry S. Roberts

15th Edition

1285141903, 1285141903, 9781285141909, 978-0538473637

More Books

Students also viewed these Programming questions

Question

=+c. What is the probability that x exceeds 3?

Answered: 1 week ago

Question

=+d. What is the probability that x lies within .25 sec of 3?

Answered: 1 week ago