A patients temperature is 100.7 F What the in C?
To convert a temperature from Fahrenheit to Celsius, you can use the following formula:
```
°C = (°F - 32) * 5/9
```
Plugging in the given temperature of 100.7°F, we have:
```
°C = (100.7 - 32) * 5/9
°C = (68.7) * 5/9
°C = 38.17
```
Therefore, the patient's temperature is approximately 38.17°C.