Write code to print out the phrase Hello World. code example
Example 1: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 2: printing hello world in python
print("Hello World")
print "Hello World"
#python2
print 'hello'
#python3
print('hello')
print("Hello World")
print "Hello World"