pass statement:

The pass statement is a null operation; nothing happens when it is executed. It acts as a placeholder for future code or to satisfy the syntax requirements without actually doing anything. 

while True:
  pass     # Busy-wait for keyboard interrupt (Ctrl+C)