Python zfill() 方法将左边的字符串填充为 0 位数字,形成一个长宽的字符串。它返回一个字符串,在 0 数字之前包含一个符号前缀 + 或 -。
如果宽度小于字符串长度,则返回原始长度字符串。
签名
zfill(width)
参数
width: 字符串的长度。
返回
它返回一个字符串。
让我们看一些 zfill() 方法的例子来了解它的函数。
Python 字符串 zfill() 方法示例 1
让我们看一个宽度大于字符串长度的示例。它返回一个左侧包含 0 且总长度等于宽度的新字符串。
# Python zfill(width) method
# Declaring variables
text = "Zfill Example"
# Calling Function
str2 = text.zfill(20)
# Displaying result
print(str2)
输出:
0000000Zfill Example
Python 字符串 zfill() 方法示例 2
在这里,我们传递的宽度小于字符串长度,因此它返回原始字符串而不向左侧填充零。
# Python zfill(width) method
# Declaring variables
text = "Zfill Example"
# Calling Function
str2 = text.zfill(5)
# Displaying result
print(str2)
输出:
Zfill Example
Python 字符串 zfill() 方法示例 3
此示例描述了在字符串左侧填充零之前的 + 或 - 符号。查看每个值都在前缀(+ 或 -)后填充。
# Python zfill(width) method
# Declaring variables
val = "+100"
val2 = "-200"
val3 = "--Rohan--"
# Calling Function
str2 = val.zfill(10)
str3 = val2.zfill(10)
str4 = val3.zfill(10)
# Displaying result
print(str2)
print(str3)
print(str4)
输出:
+000000100 -000000200 -0-Rohan--
Python 元组方法
相关用法
- Python String Center()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String join()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String isspace()用法及代码示例
- Python String Encode()用法及代码示例
- Python String endswith()用法及代码示例
- Python String index()用法及代码示例
- Python String rindex()用法及代码示例
- Python String swapcase()用法及代码示例
- Python String expandtabs()用法及代码示例
- Python String rjust()用法及代码示例
注:本文由纯净天空筛选整理自 Python String zfill() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。