Answer:
If you want to change a variable, just re-define it.
For example:
colour = print("red")
To change the value of the colour variable, just type:
colour = print("orange")
If you want the user to input text that changes the variable, do this:
colour = input("pick a colour")
Hope it helps ! :)