1 2 3 4 5 6 7 8 9 10 11
import turtle import random x=5 colours=["Red","Green", "blue"] for i in range(50): for i in range(4): turtle.forward(5) turtle.left(74) turtle.right(30) turtle.color(random.choice(colours)) turtle.speed(100)