“Формат Python 2 цифры” Ответ

Формат Python 2 цифры

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 ведущий 0

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

Python 2 десятичных мест формат

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

Ответы похожие на “Формат Python 2 цифры”

Вопросы похожие на “Формат Python 2 цифры”

Больше похожих ответов на “Формат Python 2 цифры” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования