gpt4 book ai didi

python - 如何将 os.walk 的输出写入文件

转载 作者:太空宇宙 更新时间:2023-11-04 08:50:56 26 4
gpt4 key购买 nike

我有一个简单的两行代码,我需要将输出写入一个文件。代码如下:

import os,sys
print next(os.walk('/var/lib/tomcat7/webapps/'))[1]

怎么做?

最佳答案

使用 open() 打开文件的方法,写入writeclose如下所示关闭它:

import os,sys

with open('myfile','w') as f:
# note that i've applied str before writing next(...)[1] to file
f.write(str(next(os.walk('/var/lib/tomcat7/webapps/'))[1]))

参见 Reading and Writing Files有关如何在 python 中处理文件的更多信息的教程和 What is the python "with" statement designed for? SO 问题是为了更好地理解 with 语句。

祝你好运!

关于python - 如何将 os.walk 的输出写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35338871/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com