Thrust Available and Thrust Required at Sea Level

Develop a graph for thrust required and thrust available at sea level.

Let’s talk about importing libraries in Python. You do not need them for this Educative course, but it is another good thing to know!

from numpy import pi
import matplotlib.pyplot as plt

Since you do not need the entire Numpy library, you can import specific parts of it with the from x import y syntax. Calling the Matplotlib object plt is a common convention, but Python supports any naming convention as long as you are consistent.

Get hands-on with 1200+ tech skills courses.