How do you read from stdin in Python?

I'm trying to do some of the code golf challenges, but they all require the input to be taken from stdin . How do I get that in Python?


You could use the fileinput module:

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.


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. (You need to import sys for this to work.)

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


    import sys
    
    for line in sys.stdin:
        print line
    
    链接地址: http://www.djcxy.com/p/5388.html

    上一篇: 如何为cin提供自己的分隔符?

    下一篇: 你如何从Python中的标准输入读取?