I'm trying to do some of the code golf challenges but they all require the input to be taken from stdin and I don't know how to get that in python.

link|improve this question

38% accept rate
feedback

7 Answers

There's a few ways to do it.

sys.stdin is a file-like object on which you can call functions read or readlines if you want to read everything or you want to read everything and split it by newline automatically.

If you want to prompt the user for input, you can use raw_input in Python 2.X, and just input in Python 3.

If you actually just want to read command-line options, you can access them via the sys.argv list.

You will probably find this Wikibook article on I/O in Python to be a useful reference as well.

link|improve this answer
2  
the prompting is optional – newacct Sep 20 '09 at 7:51
1  
The prompt (waiting for user input) isn't optional, but displaying prompt text is. – agarrett Dec 7 '11 at 9:03
feedback

This is something I learnt from StackOverflow

import fileinput

for line in fileinput.input():
    pass

Fileinput will run over all lines in the input; it takes the files given as command-line arguments, or if missing, the standard input.

link|improve this answer
Thanks for that one, I didn't know it. – e-satis Feb 15 '10 at 9:31
3  
feedback

Here's from Learning Python:

import sys
data = sys.stdin.readlines()
print "Counted", len(data), "lines."

On Unix, you could test it by doing something like:

% cat countlines.py | python countlines.py 
Counted 3 lines.

On Windows or DOS, you'd do:

C:\> type countlines.py | python countlines.py 
Counted 3 lines.
link|improve this answer
2  
I'm having this problem with the first two lines in Python 3.2 ` data = sys.stdin.readlines() AttributeError: 'NoneType' object has no attribute 'readlines'` – Jader Dias Jun 14 '11 at 13:00
feedback
import sys

for line in sys.stdin:
    print line
link|improve this answer
I'm having this problem in Python 3.2 for file in sys.stdin: TypeError: 'NoneType' object is not iterable – Jader Dias Jun 14 '11 at 13:02
This is an extremely useful answer. Thanks! – Malcolm Mar 6 at 8:07
feedback

Python also has built-in functions input() and raw_input(). See the python documentation under Built-in Functions

For example,

name = raw_input("Enter your name: ")
link|improve this answer
feedback

The answer proposed by others:

for line in sys.stdin:
  print line

is very simple and pythonic, but it must be noted that the script will wait until EOF before starting to iterate on the lines of input.

This means that tail -f error_log | myscript.py will not process lines as expected.

The correct script for such a use case would be:

while 1:
    try:
        line = sys.stdin.readline()
    except KeyboardInterrupt:
        break

    if not line:
        break

    print line
link|improve this answer
3  
Are you sure? I'm running this with 3.2.2 and each line is echoed as I type. – Graham Lea Oct 27 '11 at 9:49
1  
I just tried it again and it indeed seems to work correctly. Not sure if it was a bug in my python interpreter or what but I'm fairly sure that it did not work before. Thanks for bringing this up! – Massimiliano Torromeo Oct 27 '11 at 10:22
feedback

A more useful example. Input are three columns separated by tabs:

for line in sys.stdin:
    [user,time,query] = line.rstrip().split('\t')
    if "hello" in query:  # query contains hello
        print user,'\t',query
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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