Run your code 10,000 times. :)

** **
>
> import math****
>
> import random****
>
> random.seed()****
>
>
points = []
for i in range(0, 10000):

    x=random.uniform(0,1)

    y=random.uniform(0,1)

    points.append ( (x, y) )


I hope it helps.

-- 
Sincerely,
Ashfaq
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to