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)
or
myvar = "the answer is %s" % answer