I have an integer called score, I turn it into a string and then try to get python to print a string of score plus a few other strings
score = 0
str(score)
variable = (" you have" + score + "points")
print(variable)
However it just tells me that score is still an integer, how do I fix this?