The K_a is a constant integer, but you don't need to worry about it's value.  It tells you the index in get_pressed() to check for.  So:<br><br>print pygame.key.get_pressed()[pygame.K_a]<br><br>Says, look at the 97th index in the get_pressed() list and see if that is a 1 or a 0.<br>
<br>Or if you use the pygame events:<br><br>for evt in pygame.event.get():<br>    if evt.type == pygame.KEYDOWN and evt.key == pygame.K_a:<br>        print "a pressed"<br><br>evt.type and evt.key will both be integers that map to one of the type constants and one of the key constants respectively.  This way the key constant works in both types of input handling (which are both useful for different types of input).<br>