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.
|
There's a few ways to do it.
If you want to prompt the user for input, you can use 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. |
|||
|
This is something I learned from StackOverflow:
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. |
|||||||||||||||||||
|
|
|||||||||
|
|
Here's from Learning Python:
On Unix, you could test it by doing something like:
On Windows or DOS, you'd do:
|
|||||||||
|
|
Python also has built-in functions For example,
or
|
||||
|
|
|
The answer proposed by others:
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 The correct script for such a use case would be:
|
|||||||||||||
|
|
This will echo standard input to standard output:
|
||||
|
|
|
A more useful example (input are three columns separated by tabs):
|
|||||
|
|
Maybe this is useful for someone.
|
|||
|
|
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.
