Python: Variable in Quotes Example

variable_1 = "Python"
variable_2 = "Django"
age = 20

# insert variables into string using f-string
insert_var = f"Hello {variable_1} and {variable_2} I'm Pytutorial I'm {age} years old"

#print
print(insert_var)

Output:

Hello Python and Django I'm Pytutorial I'm 20 years old