'I'm making a temperature converter app, but there's something I don't understand

I am making a temperature translation application, but there are some points that I do not understand. What operator do I need to use when converting kelvin to fahrenheit?

code

I set the kelvin value to 273.15 and the degree value I got from the information I received from the user



Solution 1:[1]

What operator do I need to use when converting kelvin to fahrenheit

This is the formula

°F =(K - 273.15)* 1.8000+ 32.00

You already have K. Those operators shown are the same in Python

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 OneCricketeer