Insert custom boolean values in JSON python
I am creating a JSON using Python. It looks something like this: [ ... {"name":"John","is_active":true} ... ] This is like a configuration JSON that I will be passing to a config file. How can I insert true as a value.…