def main():
celsius = float(input("What is the Celsius temperature? ")
fahrenheit = (9/5) * celsius + 32
print ("The temperature is ", fahrenheit, " degrees Fahrenheit.")
main()
error output:
Syntax Error:(line 8) fahrenheit = (9/5) * celsius + 32
This makes perfect sense to me. How can i fix this error?