return f in python code example
Example 1: f string repr
>>> color = "blue\ngreen"
>>> day = datetime.date(2020, 6, 4)
>>> f"Color is {color} and day is {day}"
'Color is blue\ngreen and day is 2020-06-04'
>>> f"Color is {color!r} and day is {day!r}"
"Color is 'blue\\ngreen' and day is datetime.date(2020, 6, 4)"
Example 2: python f string
>>> name = "Eric"
>>> age = 74
>>> f"Hello, {name}. You are {age}."
'Hello, Eric. You are 74.'
Example 3: python f string
name = 'Psych4_3.8.3'
age = 23
job = 'programmer'
print("I am %s a %t of age %u", %(name, job, age))
print(f"I am {name} a {job} of age {age}")