Convert Python dictionary format to JSON
Enter Python Dict data to convert to JSON
Your converted data will appear here
We support standard Python dictionary and list syntax including single quotes, None, True/False values, nested structures, and tuples (converted to arrays).
None → null, True/False → true/false, single quotes → double quotes, tuples → arrays. Numbers and strings are preserved with proper JSON formatting.
Yes! You can paste Python dict definitions, list comprehensions results, or any Python data structure that evaluates to a dict or list.
Only basic data types are supported: dict, list, tuple, str, int, float, bool, None. Custom objects need to be converted to basic types first.