476,966 views
27 votes
27 votes
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.

User Heath
by
2.7k points

1 Answer

23 votes
23 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 Namey
by
3.2k points