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” myvars = “the answer is” + answer print(myvars)
That should give you the answer is True easily as you have stored answer as a string by using the quotation marks