从print语句分页输出

时间:2012-11-05 07:05:47

标签: python python-2.7

我基本上是想实现这个目标:

>>>print "SOME_VERY_LONG_TEXT" | more

当然,它在Python 2.7(IDLE)中不起作用。

此外,我尝试了pager 1.2page()功能,但我不知道如何让它正常工作。

有什么想法吗?

[UPDATE]

我找到了一种懒惰的方式,如下:

import pydoc
pydoc.pager("SOME_VERY_LONG_TEXT") 

3 个答案:

答案 0 :(得分:3)

您可以将其称为外部流程。 (尽管如此,您必须be carefulshell=True。)

import subprocess
longStr = 'lots of text here'
subprocess.call(['echo "'+longStr+'" | more'], shell=True)

答案 1 :(得分:3)

虽然有点晚,但以下情况对我有用:

def less(data):
    process = Popen(["less"], stdin=PIPE)

    try:
        process.stdin.write(data)
        process.communicate()
    except IOError as e:
        pass

答案 2 :(得分:2)

写一些终端和os独立可能是一项更大的任务。

但是如果你可以获得终端的高度,那么你可以使用这样的东西 假设您的输入是行分隔文本的生成器/列表,或者您可以在调用此函数之前调用text.split('\ n')

def pagetext(text_lined, num_lines=25):
   for index,line in enumerate(text_lined):
       if index % num_lines == 0 and index:
           input=raw_input("Hit any key to continue press q to quit")
           if input.lower() == 'q':
               break
       else:
           print line

pypy上还有一个pager模块没有使用它,但作者说它应该被包含在标准库中。