Python

The python types that can be converted into json strings are: Dict – the dictionary is converted as a json object i.e. the dictionary itself is in the form of json. List – the list is stored in the form of arrays in json. Tuple – similar to list, tuples are also stored in the form of arrays in json ... ................
................