If you don't know, python turtle is an application for helping people learn python. You are given a python interpreter and an onscreen turtle that you can pass directions to using python.
go(10) will cause the turtle to move 10 pixels turn(10) will cause it to turn 10 degrees clockwise
now look at this

code:
import random
while(1):
r = random.randint(1,10)
go (r)
r = random.randint(-90,90)
turn (r)
can anyone explain this behavior? Notice the straight line. Is there something wrong with pythons random module?
