vote up 5 vote down star
2

I write a lot of little scripts that process files on a line-by-line basis. In Perl, I use

while (<>) {
    do stuff;
}

This is handy because it doesn't care where the input comes from (a file or stdin).

In Python I use this

if len(sys.argv) == 2: # there's a command line argument
    sys.stdin = file(sys.argv[1])
for line in sys.stdin.readlines():
    do stuff

which doesn't seem very elegant. Is there a Python idiom that easily handles file/stdin input?

flag

75% accept rate
From a "readable code" point of view, I'd prefer your Python code as most people not working with Perl won't know what the Perl code means. – schnaader Apr 30 at 14:28
2  
You can at least omit .readlines() – Jiri Apr 30 at 14:30
Duplicate: stackoverflow.com/questions/715277/… – S.Lott Apr 30 at 14:31
3  
French is highly unreadable to anyone who doesn't know French. – Eisen Apr 30 at 14:42
3  
Ah, yes, but the python is somewhat readable to someone who knows English :) – Noah Apr 30 at 22:23
show 2 more comments

3 Answers

vote up 23 vote down check

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

import fileinput

for line in fileinput.input(): ...
link|flag
Indeed. Thanks a million. Sorry I missed the other question that deals with the same problems. Was hard to find with this tite... – Eisen Apr 30 at 14:40
vote up 10 vote down
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.

link|flag
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.