cara memasukkan variabel ke dalam string tanpa memecah string dalam python

name = "Dan"
age = 21
#you need to have that "f" before the string
name_and_age = f"My name is {name}, and I am {age} years old."
print(name_and_age)
DJ73