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
Hindi,
1 month ago
Physics,
1 month ago
English,
1 month ago
Social Sciences,
2 months ago
Math,
2 months ago
Computer Science,
9 months ago
Math,
9 months ago