WAP in Python to Print “NAMASTE, BHARAT”
Answers
Answered by
2
A simple program that displays “Hello, World!”. It's often used to illustrate the syntax of the language.
To understand this example, you should have the knowledge of the following Python programming topics:
How to Get Started With Python?
Python Input, Output and Import
# This program prints Hello, world!
print('Hello, world!')
Answered by
5
print(“NAMASTE, BHARAT”)
---------------------------
- print() is a function used to print some text.
- The text to be printed should be enclosed in double quotes or single quotes inside the parentheses.
Hope it helps...
Similar questions