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