#exercise 4.1 F = input('F=? ') # C becomes a string F = float(F) # convert to float so we can compute C = (F-32)*5.0/9 print(C) """ Terminal> python f2c_qa.py F=? 80 26.666666666666668 """