#58: python 字串靠右 方法


super7@gm.ocu.edu.tw (賴麒祐)

學校 : 不指定學校
編號 : 1377
來源 : [59.126.209.172]
最後登入時間 :
2024-02-05 21:32:12
a434. 九九乘法表 -- TCGS題庫 | From: [114.46.218.104] | 發表日期 : 2023-10-27 15:28

在 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'

 

 
ZeroJudge Forum