vote up 4 vote down star
2

I usually do this in Perl:

whatever.pl

while(<>) {
    #do whatever;
}

then cat foo.txt | whatever.pl

Now, I want to do this in Python. I tried sys.stdin but I have no idea how to do as I have done in Perl. How can I read the input?

Thanks.

EDIT:

Thanks, I like every single solution.

flag
What is your question asking? – TStamper Apr 3 at 19:19

5 Answers

vote up 18 vote down check

Try this:

import fileinput
for line in fileinput.input():
    process(line)
link|flag
+1: fileinput is way cool. – S.Lott Apr 3 at 19:24
+1 This way is more flexible than "for line in sys.stdin", as it will work for filenames pass as cmd line arguments. – bluce Apr 3 at 19:46
vote up 4 vote down
import sys
def main():
    for line in sys.stdin:
        print line
if __name__=='__main__':
    sys.exit(main())
link|flag
-1: main returns None -- it's not perfectly clear what value should be returned to the OS. – S.Lott Apr 3 at 23:13
vote up 3 vote down

Something like this:

import sys

for line in sys.stdin:
    # whatever
link|flag
vote up 3 vote down
import sys

for line in sys.stdin:
    # do stuff w/line
link|flag
vote up 1 vote down

You may find a Rosetta Stone helpful. I tend to use http://www.lurklurk.org/rosetta.html.

link|flag

Your Answer

Get an OpenID
or

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