“Format Python 2 chiffres” Réponses codées

Format Python 2 chiffres

number = 1

# In Python 2 (and Python 3) you can do:
print("%02d" % (number,))
# Basically % is like printf or sprintf (see docs).

# For Python 3.+, the same behavior can also be achieved with format:
print("{:02d}".format(number))

# For Python 3.6+ the same behavior can be achieved with f-strings:
print(f"{number:02d}")
Benja

Format Python3 menant 0

print(f"{1:02d}")
bougui

Format de décimal Python 2

print "%.2f" % 5
Wide-eyed Wren

Réponses similaires à “Format Python 2 chiffres”

Questions similaires à “Format Python 2 chiffres”

Plus de réponses similaires à “Format Python 2 chiffres” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code