+ +

Markdown

+ +

Useful if you have result from a function call and you want to display it with formatting.

+ +
from IPython.display import Markdown
+
+Markdown(value)
+
+ +

HTML

+ +
from IPython.display import HTML
+
+html = HTML(image_html)
+
+ +

Render the HTML:

+ +
from IPython.display import display
+
+display(html)
+
+ +

Image

+ +
from IPython.display import Image
+
+Image(filename=image_path)
+
+ + +