iPython lprun不打印输出

时间:2015-04-06 17:28:04

标签: python ipython

我不知道这里发生了什么,所以以为我会问你们。

我刚刚在Mac OSX 10.10.2上安装了iPython 3.1

在iPython中我尝试了没有结果的功能,但这是一个例子:

In [21]: def rn():
   ....:     for ix in range(0,100): print ix
   ....:

In [22]: %lprun rn()
0
1
2
3
4
....
98
99
Timer unit: 1e-06 s

在这种情况下,我期待一个正常的cProfile类型输出,显示运行的行和每个行所用的时间。我做错了什么?!

谢谢!

1 个答案:

答案 0 :(得分:4)

使用-f标志逐行输出:

%lprun -f rn  rn()

输出:

In [13]: %lprun -f rn  rn()
0
1
2
3
4
5
...
94
95
96
97
98
99
Timer unit: 1e-06 s

Total time: 0.000933 s
File: <ipython-input-4-00cddd5336b9>
Function: rn at line 1

Line #      Hits         Time  Per Hit   % Time  Line Contents
==============================================================
     1                                           def rn():
     2       101          933      9.2    100.0        for ix in range(0,100): print ix