gpt4 book ai didi

file - 用于打开或创建的Python open()标志

转载 作者:行者123 更新时间:2023-12-02 01:23:34 24 4
gpt4 key购买 nike

Python 3中open(..., mode)的打开文件方式是什么

  • 创建如果不存在
  • 不要截断
  • 二进制模式

  • 我测试了 r+b,但是在丢失的文件上失败, w+b将其截断,并且 a+b似乎将所有写入都变为追加,而我需要覆盖一些数据。

    最佳答案

    一种解决方法是捕获异常并以其他模式打开。我仍然会接受更好的解决方案。

    try:
    self.file = open(filename, "r+b")
    except FileNotFoundError:
    self.file = open(filename, "w+b")

    关于file - 用于打开或创建的Python open()标志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38530910/

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