Home >>Python Programs >Python program to print "Hello Python"
This is the most basic program in Python language. It defines how to print any statement in Python.
In the old version of python (up to Python 2.7.0) print command is not written in parenthesis but in the new version of python software (Python 3.4.3), it is mandatory to add a parenthesis to print a statement.
Here is an example to print any statement in Python:
print ('Hello Python')