问题是 如何输出 “Let's go !” she said 这句话
第一种方法 单引号(‘’)方式
print '"Let\'s go !" she said'
第二种方法 双引号(“”)方式 + 转义字符(\)
print "\"Let\'s go !\" she said"
问题是 如何输出 “Let's go !” she said 这句话
第一种方法 单引号(‘’)方式
print '"Let\'s go !" she said'
print "\"Let\'s go !\" she said"