Comment imprimer bonjour en python
#python2
print 'hello'
#python3
print('hello')
Pinksheep
#python2
print 'hello'
#python3
print('hello')
# the normal way!
print("Hello, World!")
# Different way
import __hello__ # run the program
message = "Hello World!"
print(message)