def drawShapes(centerX, centerY, radius, points, color):
Star(centerX, centerY, radius, points, fill=color)
Star(centerX, centerY, 40, 10, fill=color)
drawShapes(300, 200, 'purple', 'blue')
drawShapes(100, 200, 'red', 'black')
How many shapes are drawn according to the code above?