pygame.time.Clock() Creates a Clock object (assign this to a name), which you can then call the tick() method on
to find out how much time has passed since the last time you called tick()
pygame.time.delay(milliseconds) Pauses game for time specified
pygame.time.get_ticks() Returns the number of milliseconds passed since pygame.init() was called