There's an annoying little problem with Python print()
output: the first line after \n
is indented. Like this:
num = 888
print("The lucky number is:\n", num)
The lucky number is:
888
I'd really like to have '888' aligned left. How can I do it?