write a python command To display the name in this format :
Example: if user gives the name ‘Anna’ as the input, then the output should be:
Congratulations! Anna.
Answers
Answered by
0
Answer:
name = input("Enter name: ")
print("Congratulations! {}.".format(name))
Explanation:
output:
Congratulations! Anna.
Similar questions
Math,
16 days ago
Biology,
16 days ago
Social Sciences,
1 month ago
Math,
1 month ago
Computer Science,
8 months ago
Math,
8 months ago