我在ubuntu 12.04的python 2.7解釋器中出現了錯誤的結果。 我已經在線解釋器中試過這段代碼,代碼沒問題。轉換溫度時出現錯誤結果
#print temperature
kindc = str(raw_input("Please type c for celsius or f for fareneit "))
tempc = float(raw_input("please type the number of degrees you want to convert "))
def result(kind,temp):
if kind == "c":
result1 = float((temp-32)*9/5)
return result1
else:
result1 = float(5/9*(temp-32))
return result1
print result(kindc,tempc)
你得到什麼樣的結果,那你希望得到呢?你用什麼在線翻譯來測試? –