读取temp.txt并在每行中写入Mysql Line

时间:2014-05-16 18:40:54

标签: python mysql file

我有temp.txt文件包含:

36.0 36.0 36.0 36.0 36.0

我希望用python读取它们的值并将最后一行写入数据库(Mysql) 任何人都可以给我一个想法如何? 我是python编程的菜鸟。 谢谢大家

1 个答案:

答案 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