Say I want to print the following sentence but it appears too long in the code editor:
print('This sentence is so so so very very very very long long long lonoooooong')
How do I start a new coding line in the code editor, something like this:
print('This sentence is so so so very very \
very very long long long lonoooooong')
But the code above doesn't quite work because in the output, there is a big gap between the 2 sentences separated by \
:
This sentence is so so so very very very very long long long lonoooooong
Many thanks in advance!