I just wanted to create a little thing that will stop me from clicking more than once on the left mouse button at the same time.
click = pygame.mouse.get_pressed()
if click[0] == 1:
print ("lel")
In this code, if I stay pressed on my left mouse, it will print out very fast and very much "lel"
s. I want to only execute the code once at a time so that it won't spam.