import numpy as np import matplotlib.pyplot as plt
x = np.arange(100)
plt.plot(x,x*x,x,x*x*x)
[<matplotlib.lines.Line2D at 0x7fb1467e3250>, <matplotlib.lines.Line2D at 0x7fb1467e32b0>]