1 import matplotlib.pyplot as plt
2 import numpy as np
3 x=np.linspace(-1,1,50)
4 Y=-X**3
5
6 plt.show()