从输入的文件输出ipython

时间:2017-01-11 14:37:59

标签: python latex ipython

例如,当我在ipython shell中工作时,我得到以下输出

In [1]: import numpy

In [2]: A = numpy.array([1,2,3,4,5])

In [3]: A
Out[3]: array([1, 2, 3, 4, 5])

In [4]: 

当我创建类似

的类似python文件时
import numpy
A = numpy.array([1,2,3,4,5])
A

并使用%run在ipython中运行它。我没有得到相同的输出。

我该怎么做才能获得 Out [n] 行,如果可能的话还可以 In [n] 行。我需要输入和输出关于为我的班级使用ipython的乳胶文档。

0 个答案:

没有答案