Jak napisać skrypt, aby wyświetlić obraz w Pythonie
>>> from PIL import Image
>>> img = Image.open('test.png')
>>> img.show()
Outrageous Orangutan