示例1:
從IPython.display導入Latex
Latex(r"$\sqrt{x^2+y^2}$”)
示例2:
來自sympy import *
init_printing()
x,y =符號(“x,y”)
sqrt(x**2+y**2)