Programming Examples
Python program to input a welcome message and print it
Write a python program to input a welcome message and print it
Solution
message=input("Enter welcome message : ")
print("Hello, ",message)
Output/ Explanation:
Enter welcome message : Good morning
Hello, Good morning