I have a question regarding python statements and whether or not it is possible to print statements such that they appear in the middle. I know that you can just punch the space bar until the word is in the middle and then print it, but I am sure there is a more logical way of doing it.
For example a normal print statement would be like this:
print ("Hello World")
This would result in the output:
Hello World
However, how should I make it so that it comes out in the middle like this:
Hello World
I COULD add spaces to my print statement, but I would have to eye it and it wouldn't truly be in the middle. Is there a function or some sort that will help me achieve this simple print problem?