所需的功能在IPython.display模块中。
from IPython.display import display, Markdown, Latexdisplay(Markdown('*some markdown* $phi$'))# If you particularly want to display maths, this is more direct:display(Latex('phi'))
所需的功能在IPython.display模块中。
from IPython.display import display, Markdown, Latexdisplay(Markdown('*some markdown* $phi$'))# If you particularly want to display maths, this is more direct:display(Latex('phi'))