python 单引号与双引号的转义
import simplejson
a = """{"a":"\\""}"""
b = """{"a":"\\'"}"""
print simplejson.loads(a)
print simplejson.loads(b)
输出:
{'a': '"'}
simplejson.errors.JSONDecodeError: Invalid \X escape sequence '\\': line 1 column 7 (char 6)
import simplejson
a = """{"a":"\\""}"""
b = """{"a":"\\'"}"""
print simplejson.loads(a)
print simplejson.loads(b)
输出:
{'a': '"'}
simplejson.errors.JSONDecodeError: Invalid \X escape sequence '\\': line 1 column 7 (char 6)