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?