It is giving me a synthax error in pycharm

I am trying to make a temperature converter in pycharm but is giving me an error saying ‘C’ is not a vallid keyword argument for print(). Help me

It is hard to help you when we don’t know what code you have written. We have to guess what you have dome, and then guess again what you are trying to do.

You are probably writing something like this:

print(C = something)

but maybe you mean this instead?

print("C =", something)

If this doesn’t help, please COPY AND PASTE (no screen shots!) at least the line of code with the syntax error. That is the minimum we need to see. After seeing that line of code, we may be able to help better, or we may ask to see more of your code.