red_square#
In this coding challenge, you will define a 2D list called red_square
which is a 2D list of tuples that represents the image below. Please use (255, 0, 0) for red and (255, 255, 255) for white.
Hint: Replace P(coordinate) from the 2D lists seen before with the corresponding RGB tuple.