使用Python3.8 于2019/10/20开始录制
第二章
1. x="my name is \"louis\""
print(x)
结果:my name is "louis"
对于字符串:从"(')开始到"(')结束,运用转义字符\规避。