How to Include image or picture in jupyter notebook?
Run like following on markdown cell,

Tips: Both Jupyter Notebook and Image file must be located in same location or directory. And moreover, we must not include location of the image within quotation mark. Image can locate at sub-folder, like following but as long as both are ame directoyr,, good to go.
Run like following on markdown cell,
<img src="<location of picture>", width = 200, height = 200>
We can surely control width
and height
by this. Unlike before, we must include location of the image within quotation mark.
Run like following on markdown cell,
from IPython.display import Image
Image("<location of picture>")
Run like following on markdown cell,
%%html
<img src="<location of picture>", width = 200, height = 200>
And yes, like before, We can surely control width
and height
by this.
Check out this Stack Q for more opinions on this.
যখন, জেকিলে মার্কডাউন ফরমেটে ইমেজ এড করে, স্কেল করার দরকার পরে-- এই বিষয়ে নিচের সোর্সটি ফলো করা যেতে পারে।