pygame.key.get_pressed() with a ps4 controller code example
Example: pygame.key.get_pressed()
if pygame.mouse.get_pressed()[0]:
# do something when the left mouse button is pressed
keys = pygame.key.get_pressed()
if keys[pygame.K_a]:
# do something when the a key is pressed