[python] How to display a jpg file in Python?

def show():

    file = raw_input("What is the name of the image file? ")

    picture = Image(file)

    width, height = picture.size()

    pix = picture.getPixels()

I am trying to write a code to display this image but this code does not provide the image. How to change my code in order to display this image?

This question is related to python

The answer is


from PIL import Image

image = Image.open('File.jpg')
image.show()

Don't forget to include

import Image

In order to show it use this :

Image.open('pathToFile').show()