我在crate表中有一个对象数组, 当我执行 SELECT 和 fetchall() 命令时,它给了我以下字典列表:
[{"key": "two", "id": "1", "value": "three", "tag": False}, etc..]
之后,我想更改这些字典之一的值并使用 sql UPDATE 更新数组。在硬代码中,它应该如下所示:
cur.execute('UPDATE servers SET
tags =[{key= "two", id= "1", value= "three", tag= False}, etc..]')
这意味着我必须解析这本字典:
{"key": "two", "id": "1", "value": "three", "tag": False}
变成这样的字符串:
{key = "two", id = "1", value = "three", tag = False}
没有 " 键,= 而不是 : 。我怎么能在 python 中做到这一点?