I use turtle module, the standard module, in Python.
The turtle movement has random direction (angle), and random distance (forward/backward).
import turtle
from random import uniform
turtle.shape("turtle")
turtle.speed(1)
for i in range (1,100):
#random angle
a = uniform (-90,90)
turtle.left(a)
#random move
d = uniform (-100,100)
turtle.forward(d)
turtle.exitonclick()
No comments:
Post a Comment