I cannot see a significant difference between the two following lines.
Yet the first parses, and the latter, does not.
In [5]: n=""" \\"Axis of Awesome\\" """
In [6]: n="""\\"Axis of Awesome\\""""
File "<ipython-input-6-d691e511a27b>", line 1
n="""\\"Axis of Awesome\\""""
^
SyntaxError: EOL while scanning string literal
Is this a Python bug/feature/oddity, or have I missing something fundamental?
'''
instead of"""
– Unscrupulous