On 02/12/2010 23:06, Burton Samograd wrote:
Hello,
I was wondering if there was a way to change the quote character for
keys in string representation of dictionaries, so that they will be JSON
equivalent. For example:
x = { 'x': 1, 'y': 2 }
{ 'x': 1, 'y': 2 }
`x`
"{ 'x': 1, 'y': 2 }" # clos
On 12/2/2010 6:06 PM, Burton Samograd wrote:
Hello,
I was wondering if there was a way to change the quote character for
keys in string representation of dictionaries, so that they will be JSON
equivalent. For example:
x = { 'x': 1, 'y': 2 }
{ 'x': 1, 'y': 2 }
`x`
"{ 'x': 1, 'y': 2 }" # clo
On 12/2/2010 3:06 PM Burton Samograd said...
Hello,
I was wondering if there was a way to change the quote character for
keys in string representation of dictionaries, so that they will be JSON
equivalent. For example:
x = { 'x': 1, 'y': 2 }
{ 'x': 1, 'y': 2 }
`x`
"{ 'x': 1, 'y': 2 }" # clo
Hello,
I was wondering if there was a way to change the quote character for
keys in string representation of dictionaries, so that they will be JSON
equivalent. For example:
>>> x = { 'x': 1, 'y': 2 }
{ 'x': 1, 'y': 2 }
>>> `x`
"{ 'x': 1, 'y': 2 }" # close but not quite a JSON string
>>> `x`.re