“.Format Python 3” Respostas de código

Formato 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

formato em str

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

Respostas semelhantes a “.Format Python 3”

Perguntas semelhantes a “.Format Python 3”

Mais respostas relacionadas para “.Format Python 3” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código