xxxxxxxxxx
print('Hello World') #prints Hello World to the console
xxxxxxxxxx
#Look at these ones, they are all right
print("Hello World")
#for python 2:
print "Hello World"
xxxxxxxxxx
# the normal way!
print("Hello, World!")
# Different way
import __hello__ # run the program
xxxxxxxxxx
# Using single and double quotations
print("Hello, World")
print('Hello, World')
# All the best for your programming journey!