#Look at these ones, they are all right
print("Hello World")
#for python 2:
print "Hello World"
print('hello world!') #prints hello world!
#python2
print 'hello'
#python3
print('hello')
# Don't forget to add a quotation mark
print("Hello World!")
a = input("Right hello world here :")
print(a)
print("Hello World!")
# For python 3
print("Hello World")
# for python 2
print "Hello World"
#The real way :)
print("Hello World!")
print("Hello World") #prints Hello World in the console
python('hello')
print('Hello World') #prints Hello World to the console
print("Hello World") #prints Hello World
#Answer by Anshul Soni
#visit my portfolio website - https://anshulsoni.netlify.app/
print("Hello World")
print "Hello World"