vote up 6 vote down star
1

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.

flag

38% accept rate

3 Answers

vote up 7 vote down

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|flag
the prompting is optional – newacct Sep 20 at 7:51
vote up 6 vote down

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|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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