Complete the code to upload the mission to the drone.
drone.upload_mission([1])The upload_mission function requires the mission data to be passed as an argument.
Complete the code to start the mission execution.
drone.[1]()The start_mission method begins the mission execution on the drone.
Fix the error in the code to check if the mission is complete.
if drone.[1](): print('Mission completed')
The method is_mission_complete returns True when the mission finishes.
Fill both blanks to create a dictionary of waypoint coordinates and their altitudes for the mission.
waypoints = {point[1]: point[2] for point in mission_points}The dictionary uses the 'coordinates' as keys and 'altitude' as values from each point.
Fill all three blanks to filter mission points with altitude above 100 and create a dictionary with their names and altitudes.
high_points = {point[1]: point[2] for point in mission_points if point[3] > 100}The dictionary keys are the point names, values are altitudes, and the filter checks altitude above 100.