“.Format Python 3” Código de respuesta

Flotador de formato de pitón

>>> 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 en str

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

Respuestas similares a “.Format Python 3”

Preguntas similares a “.Format Python 3”

Más respuestas relacionadas con “.Format Python 3” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código