Description
shapes = ["circle", "square", "triangle", "pentagon", "hexagon", "heptagon", "octagon", "nonagon", "decagon", "dodecagon"]
colors = ["red", "green", "blue", "orange", "purple", "pink", "brown", "gray"]
for i in range(50):
shape = random.choice(shapes)
color = random.choice(colors)
draw_shape(shape, color)