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. About the author Alaia
Answer: name = input(“Enter name: “) print(“Congratulations! {}.”.format(name)) Explanation: output: Congratulations! Anna. Reply
Answer:
name = input(“Enter name: “)
print(“Congratulations! {}.”.format(name))
Explanation:
output:
Congratulations! Anna.