python fstring code example
Example 1: f string python
name = input()
print(f"Welcome to grepper {name}")
""" E.g. Welcome to grepper Michael Reeves """
Example 2: f string in python
name = "John Smith"
print(f"Hello, {name}")
name = "John Smith"
print("Hello, {}".format(name))
Example 3: 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 4: python f string
>>> name = "Eric"
>>> age = 74
>>> f"Hello, {name}. You are {age}."
'Hello, Eric. You are 74.'
Example 5: python fstring
age = 12
name = "Simon"
print(f"Hi! My name is {name} and I am {age} years old")
Example 6: 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))