“Python -Format 2 Ziffern” Code-Antworten

Python -Format 2 Ziffern

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

Python3 -Format führt 0

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

Python 2 Dezimalplätze Format

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

Ähnliche Antworten wie “Python -Format 2 Ziffern”

Fragen ähnlich wie “Python -Format 2 Ziffern”

Weitere verwandte Antworten zu “Python -Format 2 Ziffern” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen