i am working on a program in Python and using Pygame. this is what the basic code looks like:
while 1: screen.blit(background, (0,0)) for event in pyg
To draw all the circles in your list, just iterate through them and draw them before each call to update:
for circle in circle_list: circle.draw_circle()
Edit: the OP had posted incorrectly formatted code, but says the actual code is fine, so removed that suggestion