screen=pygame.display.set_mode((500, 700))
Shape=['.....',
'..O..',
'.OOO.',
'.....',
'.....']
ShapeProperites={'x': 250,
'y': 50,
'Color':Red}
How can I convert this array in Pygame to a shape drawn on a screen with the properties from the dictionary? The list is meant to represent a tetromino. The circles0's should be drawn as squares on the screen.