婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2007-3-4
|
本帖最后由 糊状物 于 2017-8-15 21:58 编辑
Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 6.1.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: from sympy import *
In [2]: x,y=symbols('x,y')
In [25]: Math(latex(diff(asin(x))))
Out[25]: <IPython.core.display.Math object>
In [26]: from IPython.display import Image
In [27]: Image(filename='J:\Adobe Dreamweaver\Dreamweaver\configuration\Commands\insertFGIcons\insert_after_Over.png')
Out[27]: <IPython.core.display.Image object>
In [28]: %%latex
...: diff(asin(x))
...:
<IPython.core.display.Latex object>
为什么在out那里只显示个<IPython.core.display.Latex object>而不直接把图片显示出来?
|
|