Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

def discover_violations(directory,output): Searches the dataset directory for any flight lessons the violation regulations. This function will call list_weather_violations() to get the list of weather

def discover_violations(directory,output): """ Searches the dataset directory for any flight lessons the violation regulations. This function will call list_weather_violations() to get the list of weather violations. If list_endorsment_violations (optional) is completed, it will call that too, as well as list_inspection_violations. It will concatenate all of these 2d lists into a single 2d list of violations (so a flight may be listed more than once for each of the three types of violations). If the parameter output is not None, it will create the CSV file with name output and write the 2d list of violations to this file. This CSV file should have the following header: STUDENT,AIRPLANE,INSTRUCTOR,TAKEOFF,LANDING,FILED,AREA,REASON Regardless of whether output is None, this function will print out the number of violations, as follows: '23 violations found.' If no violations are found, it will say 'No violations found.' Parameter directory: The directory of files to audit Precondition: directory is the name of a directory containing the files 'daycycle.json', 'weather.json', 'minimums.csv', 'students.csv', 'teachers.csv', 'lessons.csv', 'fleet.csv', and 'repairs.csv'. Parameter output: The CSV file to store the results Precondition: output is None or a string that is a valid file name """

I am unsure where to even begin with this, so if someone helped me out that would be fantastic

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

Main Memory Database Systems

Authors: Frans Faerber, Alfons Kemper, Per-Åke Alfons

1st Edition

1680833243, 978-1680833249

More Books

Students also viewed these Databases questions

Question

State the uses of job description.

Answered: 1 week ago

Question

Explain in detail the different methods of performance appraisal .

Answered: 1 week ago

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago