#Use f-string #Example:  x = 2 y = f'This is a string using variable x: {x}' print(y)  #Output:  #This is a string using variable x: 2

Read more of this post