Write a program in Python that acts as a contact taker. It doesn't need to loop, just take one contact. So the program will start and ask the user for their name, their address, and phone number. The output will look like this:
Name
Address
Phone number
Code:
name=input("Enter name:")
address=input("Enter address:")
phone=input("Enter phone number:")
print("Name:",name)
print("Address:",address)
print("Phone number:",phone)
screenshots:
Get Answers For Free
Most questions answered within 1 hours.