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