5.2.3 The Stick Figure

How about creating more complex shapes than a square and a circle? What other command can we use to draw?

Look at the image below. Starting from the basic Pygame Template (you can download it from here, open it and rename it to stick_figure) write the drawing commands to create a stick figure.

Some colors are missing, so you have to create them (at the same position as the other colors). You can view an RGB calculator here or you can use this code to create ORANGE and BLUE

ORANGE   = ( 232, 163,  24)
BLUE     = (   0,   0, 255)

stick explained

You can download the code from here