文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Python版more程序 [Python]

Python版more程序 [Python]

时间:2008-10-04  来源:lvDbing

 

[root@lvdbing System]# cat more.py
#########################################################
# split and interactively page a string or file of text;
#########################################################

def more(text, numlines=15):
    lines = text.split('\n')
    while lines:
        chunk = lines[:numlines]
        lines = lines[numlines:]
        for line in chunk: print line
        if lines and raw_input('More?') not in ['y', 'Y']: break
     
if __name__ == '__main__':
    import sys # when run, not imported
    more(open(sys.argv[1]).read(), 10) # page contents of file on cmdline

设置numlines默认显示的行数为15行,然后以分行符'\n'分割文件,并存储到元组lines里。

chunk将读15行内容,然后将lines去掉前15行,并将前15行输出。

等待输入'More?',如果输入的不是'y'或'Y'则退出。

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载