I want to have a JSON object with the value of an attribute as a string with the character ".
For example:
{
"Dimensions" : " 12.0" x 9.6" "
}
Obviously this is not possible. How do I do this? With Python.
feedback
|
|
Isaac is correct. As for how to do it in python, you need to provide a more detailed explanation of how you are building your
Obviously this is kind of silly. If you are using the standard python json module, try this:
which is the desired result. | |||||||
feedback
|
|
Python has two symbols you can use to specify string literals, the single quote and the double quote. For example: my_string = "I'm home!" Or, more relevant to you,
You can also prefix the string with 'r' to specify it is a raw string, so backslash escaped sequences are not processed, making it cleaner.
| |||
|
feedback
|
|
JSON.stringify, if using Javascript, will escape it for you.
| ||||
feedback
|