diy-pda/goodbye.py

11 lines
91 B
Python
Executable File

import time
def see():
print("good")
time.sleep(65)
def ya():
print("bye")
see()
ya()