El método zfill() devuelve una copia de la string con los caracteres ‘0’ a la izquierda de la string dada.
Sintaxis:
str.zfill(length)
Parámetros:
length : length es la longitud de la string devuelta de zfill() con los dígitos ‘0’ rellenos a la izquierda.
Devolver :
Returns a copy of the string with '0' characters padded to the leftside of the given string.
CÓDIGO 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))
Producción :
0000000000geeks for geeks 00000geeks for geeks geeks for geeks
CÓDIGO 2
number = "6041" print(number.zfill(8)) number = "+6041" print(number.zfill(8)) text = "--anything%(&%(%)*^" print(text.zfill(20))
Producción :
00006041 +0006041 -0-anything%(&%(%)*^
Publicación traducida automáticamente
Artículo escrito por pawan_asipu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA