format_output()
Format a result dictionary as a readable string.
Usage
format_output(result)Parameters
result: dict-
The result dictionary to format.
Returns
str-
A formatted string representation.
Examples
>>> format_output({"name": "test", "id": 1})
'name=test, id=1'See Also
- validate_input(): Validates input before processing.