我想在'The Zen of Python'中查看一个单词。
第一,从ipython
导入 In [1]: import this
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
...
其次,Ctrl + F
在bash上搜索我的单词
它不方便地显示控制台顶部的结果
我只想在'import this'中查看结果
如何使用命令less
重定向内容并查看内容?
答案 0 :(得分:1)
你真的需要less
吗?您可以从命令行调用this
并将结果传递给grep
:
$ python -m this | grep "[...]"
如果你想在IPython中做同样的事情,你可以使用%%bash
魔法:
%%bash
python -m this | grep "[...]"
但是既然你在python解释器里面,为什么不使用字符串搜索功能,或者使用re
模块呢?