例如,当我在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的乳胶文档。