“.format Python 3” Ответ

Формат Python Float

>>> x = 13.949999999999999999
>>> x
13.95
>>> g = float("{:.2f}".format(x))
>>> g
13.95
>>> x == g
True
>>> h = round(x, 2)
>>> h
13.95
>>> x == h
True
Quaint Quoll

.format Python 3

#New Style
'{} {}'.format('one', 'two')

#Old Style
'%s %s' % ('one', 'two')
Outrageous Opossum

формат на стр

'{:10.5}'.format('xylophone')
Panicky Pigeon

Ответы похожие на “.format Python 3”

Вопросы похожие на “.format Python 3”

Больше похожих ответов на “.format Python 3” по Python

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

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