Guys where I get multiple data each in a list from a database and append this to another list,so my data looks this way
data= [["a","b","c"],["1","2","3"]]
If I try to Json dump and load this data it give an error on the load side
data2 = str.encode(json.dumps(data))
st = bytes.decode(data2)
msg = json.loads(st)
raise JSONDecodeError("Expecting value", s,err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
But this doesn't not happen where it is a single list