I want to implement a program, which asks for an input, but when it does not receive a response after 3 seconds, the following line of code is executed. For example, an input is declared to receive the "email" input, but if 3 seconds pass and it does not receive any input from the user, the following command line (print) is executed, telling it that it did not detect any input.
email = input("Enter your email address: ")
print("To confirm, is your email address:", email)