I noticed that Pylance was not giving me an error when I line wrapped a string like this:
>>> print('foo bar'
... ' and then some.')
foo bar and then some.
I tried it and Python seems to happily concatenate these, as well as simply:
>>> print('foo bar' 'and more')
foo barand more
I thought I needed a + to concatenate. Is this behavior reliable, or should I use + for line wraps, like:
print('This is '
+ 'more readable.')
Thanks