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. |
||
|
|
|
Here's from Learning Python:
|
||
|
|
|
|
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. |
||
|
|
