112k views
1 vote
Write a simple computer program that asks a user to input their name and email address, and then displays a message that tells the person that you will be contacting them using the email address they entered.

1 Answer

2 votes

name = input("Enter your name: ")

email = input("Enter you e-mail: ")

print("Hi",name,"we can contact you via your e-mail address which is",email)

User Dmitrii Cooler
by
3.7k points