How do I iterate over all lines of files passed on the commandline in Python?
- by Tg
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.