Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import turtle as t
- import random
- t.shape("turtle")
- t.speed(0)
- for x in range(500):
- a = random.randint(1,360)
- t.setheading(a)
- b = random.randint(1,20)
- t.forward(10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement