用零填充字串
在Python中,字串和數字可以用零填充到特定長度。以下是實現此目的的方法:
填充字串
要用零填充字串,請使用 zfill() 方法。例如:
n = '4' print(n.zfill(3)) # Output: 004
這將用零填充字串,直到達到指定的長度。
填充數字
可以填充數字使用各種方法帶零:
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中文網其他相關文章!