Python 3 中是否有重定向运算符>>?
Is there the redirect operator >> in Python 3?
我不知道 redirect 运算符在 Python 2 中,例如 here 有人正在使用它来将某些内容重定向到文件。我只知道 Bash 中有一个。 Python3里还有这种东西吗?
以这种方式使用 shell 重定向
python foo_bar.py > file
仍然可以与 python 3.x 一起使用,因为这不是 python 本身的特性,但这实际上是 shell 解释器的特性,其中 python命令是运行。
print
函数中Python 3.x可选地接受file
参数,可以指定文件对象。
import sys
print(n, file=sys.stderr)
我不知道 redirect 运算符在 Python 2 中,例如 here 有人正在使用它来将某些内容重定向到文件。我只知道 Bash 中有一个。 Python3里还有这种东西吗?
以这种方式使用 shell 重定向
python foo_bar.py > file
仍然可以与 python 3.x 一起使用,因为这不是 python 本身的特性,但这实际上是 shell 解释器的特性,其中 python命令是运行。
print
函数中Python 3.x可选地接受file
参数,可以指定文件对象。
import sys
print(n, file=sys.stderr)