Earlier quoted context omitted.
You could have the same behavior by enforcing + operation in between mylongstring = "hello" + "world" No idea if python's way of indentations allows this but sounds like it should
No, it doesn't: mylongstring = ("hello" + "world") or, without `+` mylongstring = ("hello" "world")
mylongstring = "hello " \
"world " \
"my " \
"name " \
"is"*