#If there is any problem, please tell in comments
import numpy as np
import matplotlib.pyplot as plt
F=np.linspace(-20,120,101)
Capp=(F-30)/2
Cexact=(F-32)*(5/9)
er=np.abs(Capp-Cexact)
plt.plot(F,Capp,'k--')
plt.plot(F,Cexact,'k')
plt.plot(F,er,'k:')
a=-20#change value for limits according to specification above, which you have not provided
b=120
plt.xlim(a,b)
plt.xlabel('temperature / F')
plt.ylabel('temperature / C')
#plt.show()#remove # at the start to see plot

Plot exact and inexact Fahrenheit- Celsius conversion formulas A simple rule to quickly compute the Celsius...
i need a python code
For an exact conversion between "Fahrenheit temperature scale" and "Celsius temperature scale", the following formulas can be applied. Here, F is the value in Fahrenheit and the value in Celsius: Temperature Conversions C = 5 9 (F - 32) F = (š xc) + 3 Write a Python program that uses the above formula to convert Celsius to Fahrenheit and vice versa. We ask user to input "Enter a degree: ", and then we get...