TURTLE TURTLE

import turtle
import random
wn = turtle.Screen()
wn.bgcolor(‘red’)
turtle.pencolor(‘white’)
turtle.shape(‘turtle’)

for i in range(100):
print (random.randint(0,46))
a = random.randint(0,46)
turtle.right(a)
print (random.randint(0,150))
b = random.randint(0,150)
turtle.forward(b)
turtle.back(b)