Several lines, one print

Report a typo

Write a snippet that will print the following lines using only one print() statement.

The lines:

Night, square, apothecary, lantern,
Its meaningless and pallid light.
Return a half a lifetime after –
All will remain. A scapeless rite.

Tip: Use \n symbols to make a new line

Write a program in Python 3
line1 = "Night, square, apothecary, lantern,"
line2 = "Its meaningless and pallid light."
line3 = "Return a half a lifetime after – "
line4 = "All will remain. A scapeless rite."

# your one print() statement here
print(...)
___

Create a free account to access the full topic