在 c 裡面 可用 setw()
在 python 要將 字串 靠右, 左邊內容 要顯示什麼, 可用
(1). rjust()
s = '8'
# 靠右, 左邊補 0
s.rjust(2, '0') -> '08'
s.rjust(3, '0') -> '008'
# 靠右, 左邊補空白
s.rjust(2, ' ') -> ' 8'
s.rjust(5, ' ') -> ' 8'
(2). format 格式化字串
s = '8'
f'{s}' -> '8'
# 靠右, 左邊補 0
f'{s:0>2}' -> '08'
f'{s:0>3}' -> '008'
# 靠右, 左邊補空白
f'{s:>2}' -> ' 8'
f'{s:>5}' -> ' 8'