- Is the output valid Python?
- Yes — paste directly into any `.py` file. Booleans become `True`/`False`, nulls become `None` (capital-T Python conventions).
- What about single vs double quotes?
- Python convention — single quotes by default for string literals. Toggle to double if your project's style guide requires them.
- Are f-strings used?
- No — literal string values only. The tool generates data, not code with interpolation. For f-strings, edit the output manually.
- How does it handle large numbers?
- Integer and float as Python literals. Very large numbers pass through as-is (Python handles arbitrary precision natively, unlike JavaScript).