python print输出到txt

在 Python 中,你可以使用 print 函数来输出内容到文本文件中。

首先,你需要使用 Python 的 open 函数打开一个文本文件,然后使用 print 函数将内容写入文件,最后使用 close 函数关闭文件。

例如,以下代码将内容 "Hello, World!" 写入名为 "output.txt" 的文本文件中:

f = open("output.txt", "w")
print("Hello, World!", file=f)
f.close()

你还可以使用 with 语句简化这个过程,例如:

with open("output.txt", "w") as f:
    print("Hello, World!", file=f)

在这种情况下,文件会在 with 语句块结束时自动关闭。

希望这些信息能帮到你。

  •