Как узнать, нажата ли кнопка пространства в Python Pygame

state = pygame.key.get_pressed()
if state[pygame.K_SPACE]:
Super Sardine