Maison  >  Questions et réponses  >  le corps du texte

Python的CSV模块,怎么新建为添加模式

fil = open(FILE_NAME, "wb") writer = csv.writer(fil, delimiter=',')
这样新建的写模式,每打开一次文件写入数据,会把之前的数据擦掉,重新写入,不会添加到末尾。我想让它添加到尾部,而不是重新写入,该怎么弄?
PS:我会用多个线程操作这个文件

阿神阿神2766 Il y a quelques jours424

répondre à tous(2)je répondrai

  • PHPz

    PHPz2017-04-17 13:11:22

    'w'为擦写,即清除已有数据后写入新的。
    用'a+'为追加。

    répondre
    0
  • 天蓬老师

    天蓬老师2017-04-17 13:11:22

    fil = open(FILE_NAME, "a+")

    répondre
    0
  • Annulerrépondre