Ask Your Question

Éliade's profile - activity

2018-01-15 20:43:57 +0100 received badge  Notable Question (source)
2016-11-18 22:38:44 +0100 received badge  Popular Question (source)
2012-08-14 05:48:07 +0100 received badge  Supporter (source)
2012-08-14 05:47:57 +0100 marked best answer Show PIL image on notebook
import Image
im = Image.open(DATA+'tree.png')
im2 = im.rotate(90)
im2.save('tree2.png')
2012-08-14 05:47:57 +0100 received badge  Scholar (source)
2012-08-13 19:04:06 +0100 asked a question Show PIL image on notebook

On the notebook, after the following code

import Image
im = Image.open(DATA+'tree.png')
im2 = im.rotate(90)

what is the instruction that will show the PIL im2 image ?