我正在查看python 2.7.10中的dis模块代码,第47行有一些奇怪的语法我不明白:
提出类型错误,\
我想知道','代码是什么?
答案 0 :(得分:1)
\
是line continuation个字符。这意味着"这个陈述继续到下一行"。
如果你的代码看起来像,
raise Typeerror, \
"expected string, got tuple"
表现与
完全相同raise Typeerror, "expected string, got tuple"