Answers for "python3 assign variable inside a 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
2

how to give a string value variable in python

foo = "bar"
exec(foo + " = 'something else'")
print bar
something else
Posted by: Guest on April-04-2021

Code answers related to "python3 assign variable inside a string"

Python Answers by Framework

Browse Popular Code Answers by Language