I am making a game in which the user has to press a specific key to make the player move. During the handling of this event, which one is the correct code to be written :-
if event.type == pygame.K_E:
vel_F1_x = 2
vel_F2_x = 0
OR
if event.type == pygame.K_e:
vel_F1_x = 2
vel_F2_x = 0