I want to accomplish the following
answer = True myvar = \"the answer is \" + answer
and have myvar\'s value be \"the answer is True\". I\'m pr
answer = True
myvar = 'the answer is ' + str(answer) #since answer variable is in boolean format, therefore, we have to convert boolean into string format which can be easily done using this
print(myvar)