Archive for the ‘Jokes’ Category.

Send a message THROUGH TIME in Python

Who says time travel isn't possible?

import time
 
def send_to_future(message, seconds):
    time.sleep(seconds)
    return message

I'll leave it up to someone else to write the send_to_past() function.