plot(x,y,'r') for red lines
plot(x,y,'b') for blue lines
Need more colors for a decent X'mas? See here .
UPDATES
As you requested, there are too many lines for manual setting of colors. So how about this:
from matplotlib.pyplot import * x = list(range(10)) amount = 20 for i in range(amount): y = [ji for j in x] c = [float(i)/float(amount), 0.0, float(amount-i)/float(amount)] #R,G,B plot(x, y, color=c) show()
He gives:

source share