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.
|
feedback
|
|
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. | |||||||||
feedback
|
|
This is something I learnt from StackOverflow
Fileinput will run over all lines in the input; it takes the files given as command-line arguments, or if missing, the standard input. | |||||||
feedback
|
|
Here's from Learning Python:
| |||||
feedback
|
| |||||
feedback
|
|
Python also has built-in functions For example,
| |||
|
feedback
|
|
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:
| |||||||||
feedback
|
|
A more useful example. Input are three columns separated by tabs:
| ||||
|
feedback
|