“Format wydruku Python” Kod odpowiedzi

Format 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 wydruku Python

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

Format drukowania Pythona „%s”

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

Odpowiedzi podobne do “Format wydruku Python”

Pytania podobne do “Format wydruku Python”

Więcej pokrewnych odpowiedzi na “Format wydruku Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu