Comment imprimer bonjour en python
#python2
print 'hello'
#python3
print('hello')
Pinksheep
#python2
print 'hello'
#python3
print('hello')
# Don't forget to add a quotation mark
print("Hello World!")
print('hello world!') #prints hello world!
#The real way :)
print("Hello World!")
print("Hello World") #prints Hello World in the console