Question
IN PYTHON CODE PLEASE: Write a program with a class definition 'Aircraft'. The constructor should take in arguments for tail_number, latitude, longitude, altitude, heading, and
IN PYTHON CODE PLEASE:
Write a program with a class definition 'Aircraft'. The constructor should take in arguments for tail_number, latitude, longitude, altitude, heading, and speed. These should be stored in a dictionary. The key is the parameter name (e.g. 'tail_number'), and the value will be the argument passed to the constructor (e.g. 'N51123ND'). Also have a method definition in the class called 'print_plane', which prints out all of these values for a given instantiation of the class. In the main portion of the program, have an initially-empty list called 'airplanes'. Have the user enter the arguments listed above, call the constructor, and add the new object to the list. Do this three times, so that there will be a list with three instantiations of the Aircraft class in it. Finally, use a 'for' loop to iterate over the list, calling the print_plane method from each object in the list.
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