不懂就問
# Enter a
print(r'''"To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.''')
用r'''……'''來輸出,為什么到最后suffer那里是三個'''而不是四個'''',(有一個'是題目里有的)
# Enter a
print(r'''"To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.''')
用r'''……'''來輸出,為什么到最后suffer那里是三個'''而不是四個'''',(有一個'是題目里有的)
2021-09-05
舉報
2021-09-06
是4個,加上空格就行,記得在'''與'中間加上空格,'和"中間也要加上空格
print(r''' ' " To be, or not to be":that is the question.
? ? ? ? Whether it's nobler in the mind to suffer.' ''')
r'''……'''的好處就是,完全不需要考慮\了