Which variable can be used in place of XXX in the following…
Which variable can be used in place of XXX in the following code?def fahrenheit_to_celsius(f): fraction = 5 / 9 c = (f – 32) * fraction return c degrees = float(input(‘Enter degrees in Fahrenheit: ‘))print(fahrenheit_to_celsius(XXX))