“Python Fügen Sie Null zu String hinzu” Code-Antworten

Python Fügen Sie Null zu String hinzu

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

Python Fügen Sie Null zu String hinzu

# 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

Füllen Sie Null hinter der Zahl Python

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

Ähnliche Antworten wie “Python Fügen Sie Null zu String hinzu”

Fragen ähnlich wie “Python Fügen Sie Null zu String hinzu”

Weitere verwandte Antworten zu “Python Fügen Sie Null zu String hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen