print program in python code example
Example 1: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 2: how to use print statement in python
print("This is how print")
#python2
print 'hello'
#python3
print('hello')
print("This is how print")