Here is a simple Python program that prints “Hello Python”:

Created with Sketch.

print("Hello Python")

You can also use the print() function to print a string in python

print("Hello Python")

You can run this program by running the python file from command line. Like:

$ python file_name.py

It will print “Hello Python” on the console. You can also use an IDE (Integrated Development Environment) like Pycharm to run the code and see the output.

Leave a Reply

Your email address will not be published. Required fields are marked *