在 python 中使用 sys.stdout 写入文件
ascii85.encode(file('/work/file1'), sys.write('/work/file2')
我正在尝试使用 sys.stdout 使用此代码写入文件,但它没有写入。
如何修复写入文件的代码?
ascii85.encode(file('/work/file1'), sys.write('/work/file2')
I am trying to write to a file with this code using sys.stdout, but it is not writing.
How do I fix the code to write to a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下,
我不知道你到底想做什么,但这就是你打开文件以用 Python 编写的方式。
如果这不是您想要的,请澄清您的问题。
Try
I don't know what exactly you're trying to do but that's how you open a file for writing in Python.
If this isn't what you want please clarify your question.