我得到了一个具有此列表结构的 .txt 文件:
["saelyth", "somehting here", "Not needed", "2013-08-24 14:14:47"]
["anothername", "whatever 1", "Not needed neither", "2013-08-24 15:12:26"]
["athirdone", "just an example", "of the list structure", "2013-08-24 15:12:51"]
只有在文件中找到值 1 时,我才需要替换特定列表的第二个值。我正在尝试的代码是这个,但到目前为止,它只是将数据附加到文件而不是替换它。
horaactual = datetime.datetime.now()
filename = "datosdeusuario.txt"
leyendo = open(filename, 'r+')
buffer = leyendo.read()
leyendo.close()
fechitaguardaips = str(horaactual)[:19]
escribiendo = open(filename, 'r+')
for line in escribiendo:
retrieved = json.loads(line)
if retrieved[0] == user.name:
retrieveddata1 = "prueba"
mythirdvalue = "not important"
escribiendo.write(json.dumps([user.name, retrieveddata1, mythirdvalue, fechitaguardaips])+"\n")
break
escribiendo.close()
我猜失败是在 escribiendo.write 行中。然而,我已经用谷歌搜索了两个小时,我确实做到了这一点,但我没有找到替换数据而不是写入或附加的特定调用。我该如何解决这个问题?
这就是发生的事情,不应该:(
["saelyth", "prueba", "", "2013-08-27 13:25:14"]
["saelyth", "prueba", "", "2013-08-27 13:25:32"]
["saelyth", "prueba", "", "2013-08-27 13:26:01"]
我也很难理解 Break 的作用,因为我想从我的代码中停止无限循环(它昨天在程序的不同部分发生在我身上,但我也在 JSON Python 中使用“For line in X”) .