IPython使用
Posted PLAY_JOY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IPython使用相关的知识,希望对你有一定的参考价值。
In [14]: %timeit L = [n ** 2 for n in range(1000)] 362 μs ± 16.1 μs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
In [17]: %run my_app.py
4356
In [26]: print(_) # 历史的输出结果,第一,第二,第三 -2.185039863261519 In [27]: print(__) -0.4161468365471424 In [28]: print(___) 0.9092974268256817
In [33]: math.sin(2) + math.cos(3); # 禁止一条命令的输出,行末加个; # 这个结果被默默计算了,结果既不会显示在屏幕上,也不会存储在Out路径下 In [34]: 33 in Out Out[34]: False
以上是关于IPython使用的主要内容,如果未能解决你的问题,请参考以下文章