“Python ajouter zéro à la chaîne” Réponses codées

Python ajouter zéro à la chaîne

# add zeros in front of a string
>>> n = '4'
>>> print(n.zfill(3))
004
FaultyLemon

Python ajouter zéro à la chaîne

# add zeros to numbers
>>> n = 4
>>> print(f'{n:03}') # Preferred method, python >= 3.6
004
>>> print('%03d' % n)
004
>>> print(format(n, '03')) # python >= 2.6
004
>>> print('{0:03d}'.format(n))  # python >= 2.6 + python 3
004
>>> print('{foo:03d}'.format(foo=n))  # python >= 2.6 + python 3
004
>>> print('{:03d}'.format(n))  # python >= 2.7 + python3
004
FaultyLemon

Remplissez zéro derrière le nombre Python

f_num.strip().zfill(2)
Grieving Goshawk

Réponses similaires à “Python ajouter zéro à la chaîne”

Questions similaires à “Python ajouter zéro à la chaîne”

Plus de réponses similaires à “Python ajouter zéro à la chaîne” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code