Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

9 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.

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

This is something I learned from StackOverflow:

import fileinput

for line in fileinput.input():
    pass

fileinput will loop through all the lines in the input specified as file names given in command-line arguments, or the standard input if no arguments are provided.

share|improve this answer
   
Thanks for that one, I didn't know it. – e-satis Feb 15 '10 at 9:31
10  
3  
This is what you want (albeit not what you asked for). Users can pass data to your application by either argument format.py addresses.txt or standard input cat addresses.txt | format.py. This makes your app more usable (note that grep and the rest of Unix can be used either way) – Colonel Panic Aug 14 '12 at 10:18
1  
This is fantastic, thanks for teaching me today! – codekoala Oct 31 '12 at 15:43
under windows i had to call "python" specifically, i.e. dir /b | python myprog.py --- as opposed to dir /b | myprog.py, which gave an error – Berry Tsakala Mar 1 at 20:20
show 1 more comment
import sys

for line in sys.stdin:
    print line
share|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 '12 at 8:07
+1 for most elegant and minimalistic variant – Van Jone Jan 16 at 14:18
input_text = "".join(sys.stdin) – m.kocikowski Mar 21 at 18:20

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.
share|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
Here's a more memory efficient (and maybe faster) way to count lines in Python: print(sum(chunk.count('\n') for chunk in iter(partial(sys.stdin.read, 1 << 15), ''))). see wc-l.py – J.F. Sebastian Nov 16 '12 at 4:32
this is the one true answer – laike9m May 16 at 8:41

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: ")   # Python 2.x

or

name = input("Enter your name: ")   # Python 3
share|improve this answer

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
share|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
The for line in sys.stdin: pattern does not wait for EOF. But if you test on very small files, responses may get buffered. Test with more data to see that it reads intermediate results. – mb. Jul 11 '12 at 2:06
I get wait for End Of File or buffering, when taking input from a stream when using python 2.6.6, but with 3.1.3 I don't. Note print line does not woke in 3.1.3, but print(line) does. – richard Sep 7 '12 at 9:41

This will echo standard input to standard output:

import sys
line = sys.stdin.readline()
while line:
    print line,
    line = sys.stdin.readline()
share|improve this answer

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
share|improve this answer
1  
What is all the extra code for, at least half of this has nothing to do with the question (2½ lines out of 4). (-1) – richard Sep 7 '12 at 9:20

Maybe this is useful for someone.

#! /usr/bin/env python

#Given a secuencia of integer numbers through stdin
#returns its sum through stdout

import sys
import re
num=0
for line in sys.stdin:
    regexp = re.compile("-?[0-9]+")
    numeros=[int(i) for i in regexp.findall(line)]

    for j in range(0,len(numeros)):
      num = num + numeros[j]    
    print num
    num=0
share|improve this answer

protected by Kev Sep 22 '12 at 13:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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