Dear <username>

Report a typo

Write a program that reads a user's name from input and prints the following message: Dear <username>! It was really nice to meet you. Hopefully, you have a nice day! See you soon, <username>!. Change the word <username> with the word that is provided in the input. We recommend using string templates from the string module to complete the task.

Sample Input 1:

Summer

Sample Output 1:

Dear Summer! It was really nice to meet you. Hopefully, you have a nice day! See you soon, Summer!
Write a program in Python 3
import string

# put your code here
___

Create a free account to access the full topic