如何在Jupyter Notebook顯示圖片
1 min readMar 14, 2019
from IPython.display import Image
from IPython.core.display import HTML
PATH = "small_tree.png" #圖片路徑
Image(filename = PATH , width=850, height=600)
from IPython.display import Image
from IPython.core.display import HTML
PATH = "small_tree.png" #圖片路徑
Image(filename = PATH , width=850, height=600)