问答详情
源自:3-6 Python中raw字符串与多行字符串

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

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.''')

提问者:慕用7122003 2020-09-25 12:32

个回答

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

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