I'm very new to Python and don't know very much about it's syntax and I need to write a class to interface with code given to me.
result = temperature(celsius=tempC).fahrenheit()
The class is a temperature class that converts from celsius to fahrenheit and vise versa. The thing that is causing me problems is the celsius=tempC in the class instantiation. How exactly does this work?