Extend the Python program below.
temperature = float(input("Enter reactant temperature: "))
The program should keep prompting the user to enter a reactant temperature until they enter a temperature that is between -12.5 and 64.5 inclusive.
You should use meaningful variable name(s) and correct Python syntax in your answer.