In javascript:
var myarray = [2, 3]; var json_myarray = JSON.stringify(myarray) // \'[2,3]\'
But in Python:
mylist = [2, 3] jso