just use time.sleep()
The sleep method causes a python program to freeze for certain amount of time (in milliseconds).
So, if you want to stop input() for a certain amount of time then you can do it this way,
from time import sleep
sleep(1000) #stops the program for 1 seconds
s = input()