I was wondering if it was possible to align a print statement in Python (newest version). For example:
print ("hello world")
would appear on the user's screen on the left side, so can i make it centre-aligned instead?
Thank you so much for your help!
= 80 (column) x 30 ( width)
print ("{:>30}".format("hello world"))
– Shellacking