Input a welcome message and display it Python Program
welcome_message=input("Enter welcome message : ") print("Hello, ",welcome_message)
Output:
Enter welcome message : "Welcome to https://cbsepython.in. This is the best place to learn CBSE Computer Science. Here you can find chapterwise notes for class 11-12, Practice Question Papers, Python Projects for Class 11 and 12, Chapterwise MCQs such as List, Tuple, String, Dictionary, file handling, mysql, computer networks etc." ('Hello, ', 'Welcome to https://cbsepython.in. This is the best place to learn CBSE Computer Science. Here you can find chapterwise notes for class 11-12, Practice Question Papers, Python Projects for Class 11 and 12, Chapterwise MCQs such as List, Tuple, String, Dictionary, file handling, mysql, computer networks etc.') >>>