Python 字符串 zfill() 方法
Python基础 2022-06-06 15:22:47小码哥的IT人生shichen
Python 字符串 zfill() 方法
实例
用零填充字符串,直到长度为 10 个字符:
txt = "50"
x = txt.zfill(10)
print(x)
完整实例:
txt = "50"
x = txt.zfill(10)
print(x)
定义和用法
zfill() 方法在字符串的开头添加零(0),直到达到指定的长度。
如果 len 参数的值小于字符串的长度,则不执行填充。
语法
string.zfill(len)
参数值
参数 | 描述 |
---|---|
len | 必需。数字,规定要删除的元素的位置。 |
更多实例
示例代码:
用零填充字符串,直到它们长为 10 个字符:
a = "hello"
b = "welcome to my world"
c = "10.000"
print(a.zfill(10))
print(b.zfill(10))
print(c.zfill(10))
完整实例:
a = "hello"
b = "welcome to my world"
c = "10.000"
print(a.zfill(10))
print(b.zfill(10))
print(c.zfill(10))