Python 3 - Metodo String zfill ()

Descrizione

Il zfill() il metodo inserisce una stringa sulla sinistra con zeri per riempire la larghezza.

Sintassi

Di seguito è riportata la sintassi per zfill() metodo -

str.zfill(width)

Parametri

width- Questa è la larghezza finale della stringa. Questa è la larghezza che otterremmo dopo aver riempito gli zeri.

Valore di ritorno

Questo metodo restituisce una stringa imbottita.

Esempio

L'esempio seguente mostra l'utilizzo del metodo zfill ().

#!/usr/bin/python3

str = "this is string example....wow!!!"
print ("str.zfill : ",str.zfill(40))
print ("str.zfill : ",str.zfill(50))

Risultato

Quando eseguiamo il programma sopra, produce il seguente risultato:

str.zfill :  00000000this is string example....wow!!!
str.zfill :  000000000000000000this is string example....wow!!!