a simple python program to print hello world code example
Example 1: how to print hello world in python
print("Hello World!")
Example 2: how to print hello world in python
# For python 3
print("Hello World")
# for python 2
print "Hello World"
print("Hello World!")
# For python 3
print("Hello World")
# for python 2
print "Hello World"