Answers for "python variable in """ string"

17

how to use variables in string in python

#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
Posted by: Guest on August-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language