First time here? Check out the FAQ!
answered 2012-06-08 12:33:59 +0100
Try this. Use p1=p1+ ... instead of p1 = ...
t=var('t') for i in range(-3,3,1): p1 = p1+parametric_plot((t,i),(t,-5,5),color="red") p2 = p2+parametric_plot((i,t),(t,-5,5),color="gray") show(p1+p2)