Python equivalent of Perl's while (<>) {…}?

一世执手 提交于 2019-11-29 23:04:09

The fileinput module in the standard library is just what you want:

import fileinput

for line in fileinput.input(): ...
import fileinput
for line in fileinput.input():
    process(line)

This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty.

fileinput defaults to stdin, so would make it slightly more concise.

If you do a lot of command-line stuff, though, this piping hack is very neat.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!