Python中txt文件中的空白行

时间:2020-04-02 17:17:20

标签: python file arduino writing

我几乎完成了我的项目,但是仍然存在一个小问题。我想用Python在txt文件中写入传感器值。一切正常,但有一件事情:在txt文件中,每个值之间都有空白行。真令人讨厌,因为我无法将值放入电子表格中。看起来像这样:

传感器值:

2

4

6.32

1

等...

当我这样想时:

传感器值: 1个 2 3 5 8 等等...

这是有关代码的一部分:

def write_data():
    global file_stream
    now = datetime.now()
    dt_string = now.strftime("%d-%m-%Y %H_%M_%S")
    file_stream = open("data " + dt_string+".txt", "w") # mode write ou append ?
    write_lines()


def write_lines():
    global after_id
    data = arduinoData.read()
    data2 = data.decode("utf-8")
    file_stream.write(data2)
    print(data2)
    if data2 == "F":
          print("Ca a marché")
           stopacq()
           return
    after_id = root.after(10, write_lines)

谢谢

2 个答案:

答案 0 :(得分:1)

添加换行属性

file_stream = open("data " + dt_string+".txt", "w", newline="")

答案 1 :(得分:0)

strip()  

删除开头和结尾的空白字符。

with open("directory/" + file, "r") as f:
    for line in f:
        cleanedLine = line.strip()
        if cleanedLine: # is not empty
            print(cleanedLine)

使用以下命令获取文本文件:

python file.py > file.txt