我有temp.txt文件包含:
36.0 36.0 36.0 36.0 36.0
我希望用python读取它们的值并将最后一行写入数据库(Mysql) 任何人都可以给我一个想法如何? 我是python编程的菜鸟。 谢谢大家
答案 0 :(得分:0)
test.txt
"""
36.0
36.0
36.0
36.0
36.0
last line
"""
with open("test.txt") as f: # use with to close the file automatically
lines=f.readlines()
print lines[-1] # get last element which is the last line