python 折行 无空格
>>> line = (
... "this is a"
... "very very"
... "long string")
>>> print(line)
this is avery verylong string
>>> line = (
... "this is a"
... "very very"
... "long string")
>>> print(line)
this is avery verylong string