如何在Python中从stdin读取

There are three ways to read data from stdin in Python.

在Python中,有三种方法可以从stdin读取数据。

  1. sys.stdin

    sys.stdin
  2. input() built-in function

    input()内置函数
  3. fileinput.input() function

    fileinput.input()函数

1.使用sys.stdin读取标准输入 (1. Using sys.stdin to read from standard input)

Python sys module stdin is used by the interpreter for standard input. Internally, it calls the input() function. The input string is appended with a newline character (\n) in the end. So, you can use the rstrip() function to remove it.

解释器将Python sys模块 stdin用于标准输入。 在内部,它调用

你可能感兴趣的:(python,linux,java,小程序,人工智能,ViewUI)