分别在首尾多加一个',为什么一个能输出一个不能?

来源:3-6 Python中raw字符串与多行字符串

慕用7122003

2020-09-25 12:32

print(r'''\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.'''')

print(''''\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.''')

写回答 关注

1回答

  • 慕慕7454547
    2020-09-26 06:11:08
    已采纳

    可能符号从左往右计量, 首''''从前面计量了三个是指令开始,多一个就'就当做是要输出的字符串;尾''''从前面计量了三个,按理来说已经是完整的指令了,最后尾巴多出来的'就不能识别了。(我也是才看了几节课,错了勿怪)

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154172 学习 · 1075 问题

查看课程

相似问题