Faça uma mensagem aparecer após o tempo especificado Python

import time

print("Printed immediately.")
time.sleep(2.4)
print("Print after 24 Seconds")
Talented Toad