Python 的 str.zfill(~)
方法返回源字符串的副本,其中用零 (0) 填充直至提供的長度。
參數
1. width
| number
返回字符串的長度,包括左側填充的零。
返回值
源字符串的副本,左側填充'0'
。
例子
基本用法
要返回 'Hello'
的副本,該副本用零填充,最多為 7
字符:
x = 'Hello'
x.zfill(7)
'00Hello'
寬度參數
要返回 'Hello'
的副本,該副本用零填充,最多為 3
字符:
x = 'Hello'
x.zfill(3)
'Hello'
由於 3
提供的寬度短於源字符串的長度,因此我們返回源字符串 'Hello'
。
相關用法
- Python String zfill()用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
- Python String ljust方法用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String split方法用法及代碼示例
- Python String splitlines方法用法及代碼示例
- Python String strip方法用法及代碼示例
- Python String translate()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | zfill method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。