'How can I return 3 data in return jsonify([])

When I try to return 3 data in Flask, Only the first and second is returning, and third one does not return.

Example Code:

return jsonify([response0, response1, response2])

Output:

{
 response0,
response1
}

As you can see response2 left out. How can I return them All?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source