...first frame the mouse is held down, and the other frames it's down. Copy only on the first frame, before you draw the circle:
from pygame import *
screen=display.set_mode((600,400))
running=True
FirstFrameDown=True # Initialization - we haven't entered second frames, so this is true
while...