Example
long_string = "I dont want this string to be splitted"
print(long_string)
If I print the string and the console is fullscreen, everything is fine. Output:
I dont want this string to be splitted
But when the console is small and the string doesn't fit, the following happens. Output:
I dont want this stri
ng to be splitted
This just looks really ugly. Is there a way to avoid it?
Thank you.