Simple question but cannot find a simple solution. If I have this code:
print("I don't like",FavColour,", I prefer Red")
It prints:
I don't like FavColour , I prefer Red
How do I get rid of the space between FavColour
and the comma ,
as I want my work to be grammatically correct. If I remove the commas, it becomes a syntax error.