我已经为过去几天遇到的许多问题找到了解决方案,但还需要一个解决方案。
我将使用 Python 脚本从 TXT 文件中读取、分隔项目、添加时间并另存为另一个 TXT 文件。
问题是 Python 一直在读取第一行,并且只使用 TXT 文件中的第一行。
我的带有数据的 txt 文件如下所示:
T: 55% 24.50 12% 90% N
T: 55% 25.50 12% 90% N
T: 55% 26.50 12% 90% N
T: 55% 27.50 12% 90% N
我的新 txt 文件看起来像:
2013-05-10 21:42:13 24.50
2013-05-10 21:42:14 24.50
虽然它应该看起来像:
2013-05-10 21:42:13 24.50
2013-05-10 21:42:14 25.50
你能帮我编辑我的脚本以将 Python 脚本设置为只读来自 txt 文件的最后一行、分隔项目、添加时间并将它们保存到新的 txt 文件中吗?
我的脚本看起来像:
#!/usr/bin/python
import time
buffer = bytes()
f = open("arduino.txt")
while buffer.count('T:') < 2:
buffer += f.read(30)
f.close();
# Now we have at least one complete datum. Isolate it.
start = buffer.index('T:')
end = buffer.index('T:', start+1)
items = buffer[start:end].strip().split()
print time.strftime("%Y-%m-%d %H:%M:%S"), items[2]
最好的祝福。