Answers for "multiline f string python"

22

python f string

>>> name = "Eric"
>>> age = 74
>>> f"Hello, {name}. You are {age}."
'Hello, Eric. You are 74.'
Posted by: Guest on November-17-2019
1

multiline f string python

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}
'''
Posted by: Guest on January-31-2021
16

python fstring

#python3.6 is required
age = 12
name = "Simon"
print(f"Hi! My name is {name} and I am {age} years old")
Posted by: Guest on May-31-2020
4

python f-strings

>>> 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" '
Posted by: Guest on November-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language