Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常需要在 iPython 中查看长文本变量。我通常为此使用滚动缓冲区,但我真的想要一个带有搜索功能的寻呼机。iPython 是否有办法在寻呼机中查看长变量(例如,更少)?如果没有,我当然可以设计一种方法来做到这一点!
注意:我不是在问一般如何设置 PAGER。?, ??, %pdoc 等都可以用 less 正常工作。我专门询问分页变量。
答案:%page
示例用法:
snafu$ ipython In [1]: import httplib2 In [2]: resp,data = httplib2.Http().request('http://google.com') In [3]: %page data
如何在 ipython 中使用 Pipe 的回答