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.pyIt 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.