Find out the error(s) in the following code fragment:
temperature = 90 Print temperature
The call to print function is missing parenthesis. The correct way to call print function is this:
print(temperature)