If you don't feel '\t' is convenient, you could customize the free space how many you want.
# Align right
s = 'test'.rjust(10)
# >>> "test "
# Align left
s = 'test'.ljust(10)
# >>> " test"
# Center
s = 'test'.center(10)
# >>> " test "