【python】画像表示

jupyterで画像の読み込みするときに便利

from PIL import Image
im = Image.open("./img_0.jpg")
im.show()