import math import numpy as np from matplotlib import pyplot x = np.arange(0, 10, 0.1) y = np.exp(x) pyplot.plot(x, y) pyplot.show()