When adding a dictionary to the test list with
test.append('{"name": "' + name+ '", "number":"' + number + '}') it turns out that a string is added, not a dictionary.
When adding a dictionary to the test list with
test.append('{"name": "' + name+ '", "number":"' + number + '}') it turns out that a string is added, not a dictionary.
Source: https://ru.stackoverflow.com/questions/937288/
All Articles