I'm brand new to python and my teacher showed me an example on how to write multiple variables in a print function but I am getting a syntax error. Did I write it wrong? How can I fix this?
def fahrenheit_to_celcius(num):
celciusTemp=(num-32)*0.556
print("When you convert %s to celcius the result is %s",%(num,
celciusTemp))
Above is just a simple function I'm writing as part of some beginner exercise. But when I run the code it says my print function has invalid syntax.