from turtle import *
import random

speed(0)
#color("white")
#colors = ["yellow", "red", "green", "brown", "orange", "blue"]
colors = ["#264653", "#2A9D8F", "#E9C46A", "#F4A261", "#E76F51"]

def square():
    begin_fill()
    for i in range(4):
        fd(30)
        lt(90)
    end_fill()

for x in range(10):
    for y in range(10):
        penup()
        goto(30 * x - 150, 30 * y - 150)
        #goto(30 * x, 30 * y)
        pendown()
        mycolor = random.choice(colors)
        fillcolor(mycolor)
        color(mycolor)
        square()
hideturtle()
done()
