python f formatting a string code example
Example 1: python f string
"""
An f-string stands for 'function-string' it's just used to work with
strings more appropiately, they do the exact same job as concantenating
strings but are more efficient and readable.
"""
Age = "25"
print("I am "+Age+" years old.")
Age = 25
print(f"I am {Age} years old.")
Age = "25"
print("I am {} years old.".format(Age))
Age = "25"
Name = "Jeff"
print("I am {} years old, and my name is {}.".format(Age,Name))
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}")