The matplotlib.pyplot tutorial has the following code:
lines = plt.plot(x1, y1, x2, y2)
# use keyword args
plt.setp(lines, color='r', linewidth=2.0)
I'm wondering if there's anyway to specify different colours for different lines in this statement.
