Comment écrire un script pour afficher une image dans Python
>>> from PIL import Image
>>> img = Image.open('test.png')
>>> img.show()
Outrageous Orangutan