Python,编写CSV文件有额外的空白行

时间:2014-04-23 14:32:10

标签: python csv

我有一段python代码,它应该打开(或创建)一个CSV文件并在其末尾附加一个新行。但是,每个条目之间都添加了一个额外的空白行。有没有办法避免这种情况?

我有大约500个脚本实例,它们都访问同一个文件,但(理论上)它们应该在不同的时间访问该文件。

def writeBest(fileName, savePath, data):

    # Create a filename
    name = "BEST_" + fileName + ".csv"

    # Create the complete filename including the absolute path 
    completePath = os.path.join(savePath, fileName)

    # Check if directory exists
    if not os.path.exists(completePath):
        os.makedirs(completePath)

    completeName = os.path.join(completePath, name)

    # Write the data to a file
    theFile = open(completeName, 'wb')
    writer = csv.writer(theFile, quoting=csv.QUOTE_ALL)
    writer.writerow(data)

    # Close the file
    theFile.close()

2 个答案:

答案 0 :(得分:3)

通过评论回答问题。问题是使用wb模式而非ab模式。

答案 1 :(得分:0)

' b'选项为我提供了技巧,请查看API文档:https://docs.python.org/2/library/functions.html?highlight=open#open