Bonjour le monde py
text = ("Hello World!")
print(text)
Dizzy Dugong
text = ("Hello World!")
print(text)
#To print hello world in python:
print("Hello World")
#python2
print 'hello'
#python3
print('hello')
# Don't forget to add a quotation mark
print("Hello World!")
def helloworld():
print("Hello World")
helloworld()
print("Hello World") #prints Hello World in the console