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.
The string module
Dear <username>
Report a typo
Sample Input 1:
SummerSample 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
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.