Saltar al contenido

Python f string ejemplo de código de varias líneas

Ejemplo 1: pitón de cadena f multilínea

date = "01/31/1956" # Guido Van Rossums birthday
time = "9:30 AM"
tags = ["high value", "high cost"]
text = "Hello"

# if you want to have it formatted standard but want the more appealing look
return (
    f'{date} - {time}n'
    f'Tags: {tags}n'
    f'Text: {text}'
)

# else if you want to have it formatted exactly as input
return f'''{date} - {time},
Tags: {tags},
Text: {text}
'''

Ejemplo 2: cadena f de python

>>> name = "Eric"
>>> age = 74
>>> f"Hello, {name}. You are {age}."
'Hello, Eric. You are 74.'

Ejemplo 3: Python fstring

#python3.6 is required
age = 12
name = "Simon"
print(f"Hi! My name is {name} and I am {age} years old")

Ejemplo 4: literal de cadena f de python

# This answer might be long, but it explains more python f-strings, how to use them and when to use them.
# Python f-strings are used to write code faster.
# Here is an example:
name = "George"
age = 16
favorite_food = "pizza"

# Instead of doing this:
print("My name is", name, ", my age is", age, ", and my favorite food is", favorite_food)

# Or this:
print("My name is "+ name +", my age is "+ str(age)+ ", and my favorite food is "+ favorite_food)

# You could do this:
print(f"My name is {name}, my age is {age}, and my favorite food is {favorite_food}")

# You see that the code looks a little cleaner, and as you start using f-strings you realize you write much faster.
"""
Why put the f before the string, you ask?
Well if you didnt, the output would literally be {name} instead of the actual variable
One more thing: this is fairly new and only works with python 3.6 and higher.
"""

Ejemplo 5: cadenas f de python

>>> name = "Fred"
>>> f"He said his name is {name!r}."
"He said his name is 'Fred'."
>>> f"He said his name is {repr(name)}."  # repr() is equivalent to !r
"He said his name is 'Fred'."
>>> width = 10
>>> precision = 4
>>> value = decimal.Decimal("12.34567")
>>> f"result: {value:{width}.{precision}}"  # nested fields
'result:      12.35'
>>> today = datetime(year=2017, month=1, day=27)
>>> f"{today:%B %d, %Y}"  # using date format specifier
'January 27, 2017'
>>> f"{today=:%B %d, %Y}" # using date format specifier and debugging
'today=January 27, 2017'
>>> number = 1024
>>> f"{number:#0x}"  # using integer format specifier
'0x400'
>>> foo = "bar"
>>> f"{ foo = }" # preserves whitespace
" foo = 'bar'"
>>> line = "The mill's closed"
>>> f"{line = }"
'line = "The mill's closed"'
>>> f"{line = :20}"
"line = The mill's closed   "
>>> f"{line = !r:20}"
'line = "The mill's closed" '
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *