print("Hello worl code example
Example 1: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 2: Print "nhello world"
"nhello world"
#python2
print 'hello'
#python3
print('hello')
"nhello world"