當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python string zfill()用法及代碼示例


zfill()方法返回字符串的副本,在給定字符串的左側填充“ 0”個字符。

用法:

str.zfill(length)

參數:


  • length:length是從zfill()返回的字符串的長度,左側填充了“ 0”位數。

返回:

Returns a copy of the string with '0' characters   
padded to the leftside of the given string.

代碼1

text = "geeks for geeks"
  
print(text.zfill(25)) 
  
print(text.zfill(20)) 
  
# Given length is less than 
# the length od original string 
print(text.zfill(10))

輸出:

0000000000geeks for geeks
00000geeks for geeks
geeks for geeks

代碼2

number = "6041"
print(number.zfill(8)) 
  
number = "+6041"
print(number.zfill(8)) 
  
text = "--anything%(&%(%)*^"
print(text.zfill(20))

輸出:

00006041
+0006041
-0-anything%(&%(%)*^


相關用法


注:本文由純淨天空篩選整理自pawan_asipu大神的英文原創作品 Python String | zfill()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。