maci.jsondumpstr
dumps data to a string as json
dumping a string
Dumps the corresponding python data types to a string formatted as JSON.
maci.jsondumpstr -> str
Basic Example of dumping data to a string using default positional parameters
In this example, we simply dump data to a string formatted as json using the jsondumpstr function and pass the data as an argument to the function, and assign the returned data to a variable.
parameters & arguments
Describes all parameter functionality and accepted data types
This function uses the native json library shipped with the python standard library for its underlying functionality. For more information on the json library, visit: https://docs.python.org/3/library/json.html
Last updated