首頁 >後端開發 >Python教學 >如何在 Python 中用零填充字串和數字?

如何在 Python 中用零填充字串和數字?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-19 17:48:10817瀏覽

How to Pad Strings and Numbers with Zeros in Python?

用零填充字串

在Python中,字串和數字可以用零填充到特定長度。以下是實現此目的的方法:

填充字串

要用零填充字串,請使用 zfill() 方法。例如:

n = '4'
print(n.zfill(3))  # Output: 004

這將用零填充字串,直到達到指定的長度。

填充數字

可以填充數字使用各種方法帶零:

  • 格式化字串文字(ff字串):
n = 4
print(f'{n:03}')  # Output: 004
  • 格式化字串運算子:
n = 4
print('%03d' % n)  # Output: 004
  • 字串格式方法:
n = 4
print(format(n, '03'))  # Output: 004
  • 命名格式化字串:
n = 4
print('{0:03d}'.format(n))  # Output: 004
n = 4
print('{foo:03d}'.format(foo=n))  # Output: 004
  • 關鍵字格式化字串:
n = 4
print('{:03d}'.format(n))  # Output: 004

字串插值:更多關於字串格式的字串格式信息,請參閱Python官方文檔。

以上是如何在 Python 中用零填充字串和數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn