what version of python were f strings introduced code example
Example 1: python f string literal
name = "George"
age = 16
favorite_food = "pizza"
print("My name is", name, ", my age is", age, ", and my favorite food is", favorite_food)
print("My name is "+ name +", my age is "+ str(age)+ ", and my favorite food is "+ favorite_food)
print(f"My name is {name}, my age is {age}, and my favorite food is {favorite_food}")
"""
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.
"""
Example 2: 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}")