For problems A, B, and C you will be writing two different classes to simulate a Boat race. Problem A is to write the first class Boat. A Boat object must hold the following information
boat_name: string
top_speed: int
current_progress: int
Write a constructor that allows the programmer to create an object of type Boat with the arguments boat_name and top_speed.
The boat_name should be set to the value of the corresponding argument - this argument is required.
The top_speed should default to the value 3 if no value is passed in for the argument.
The value for current_progress should always be set to 0.
Implement Boat class with setter and getter methods:
Provide setters for the following instance variables:
set_top_speed takes in an int and updates the top_speed
set_boat_name takes in a string and updates the boat_name
set_current_progress takes in a int and updates the current_progress
Provide getters for the following instance variables with no input parameters passed in:
get_boat_name returns the boat_name
get_top_speed returns the top_speed
get_current_progress returns the current_progress
Overload the __str__ method so that it returns a string containing the boat_name and current_progress. The string should look like the following example. Please note there is only 1 space after the colon.
Whirlwind: 0
A method named move which takes no arguments (other than self) and returns an int. The move method should select a random integer between 0 and top_speed (inclusive on both sides), then increment current_progress by that random value, and finally return that random value.