skaljic1
4/18/2018 - 10:59 AM

Jupyter notebook basic

#output as HTML
def bar(new_html):
    from IPython.display import display, HTML
    chart = HTML(str(new_html))
    display(chart)

bar()