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!")
#The real way :)
print("Hello World!")
python('hello')