python echo hello world code example
Example 1: how to print hello world in python
print("Hello World!")
Example 2: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 3: how print hello world in python
print("hello world")