# Head pygame.draw.circle(screen, BLACK, [ 96 , 83 , 10 , 10 ], 0 ) # Legs pygame.draw.line(screen, BLACK, [ 100 , 100 ], [ 105 , 110 ], 2 ) pygame.draw.line(screen, BLACK, [ 100 , 100 ], [ 95 , 110 ], 2 ) # Body pygame.draw.line(screen, RED, [ 100 , 100 ], [ 100 , 90 ], 2 ) # Arms pygame.draw.line(screen, RED, [ 100 , 90 ], [ 104 , 100 ], 2 ) pygame.draw.line(screen, RED, [ 100 , 90 ], [ 96 , 100 ], 2 ) |