“format d'impression python” Réponses codées

format python flottant

>>> 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 d'impression python

my_var = "world"
print(f"hello {my_var}")
# hello world
Plif Plouf

Format d'impression Python "% S"

# This prints out "John is 23 years old."
name = "John"
age = 23
print("%s is %d years old." % (name, age))
z_z

Réponses similaires à “format d'impression python”

Questions similaires à “format d'impression python”

Plus de réponses similaires à “format d'impression python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code