是的,Python 的 print()
函数可以将输出重定向到文件。要实现这一点,您需要使用 open()
函数打开一个文件,并将其作为 print()
函数的 file
参数。下面是一个示例:
# 打开一个文件(如果文件不存在,则创建它)
with open("output.txt", "w") as file:
# 使用 print() 函数将内容输出到文件
print("Hello, World!", file=file)
在这个示例中,我们首先使用 with
语句和 open()
函数打开一个名为 output.txt
的文件。文件模式 "w"
表示我们将以写入模式打开文件。然后,我们使用 print()
函数将字符串 “Hello, World!” 输出到文件。当 with
语句结束时,文件将自动关闭。