python 单引号与双引号的转义
Posted huim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)
以上是关于python 单引号与双引号的转义的主要内容,如果未能解决你的问题,请参考以下文章