#!/usr/bin/python from pylab import * t = 2*pi*rand(1000000) xs = cumsum(sin(t)) ys = cumsum(cos(t)) plot(xs,ys) show()