-2
我想找到解決這個問題已經2個小時了,我不知道該怎麼輸入這樣的功能?溫度轉換蟒蛇功能
num = input ('Which Degree Temperature would you like to convert? ')
corf = raw_input ('Is the temperature Fahrenheit Degree or is it Celsius?(Type "f" for Fahrenheit or "c" for Celsius)')
def max(num,corf):
if corf == 1 :
return num
Celsius = (num - 32) * 5.0/9.0
print str(num) + " Fahrenheit is equal to " + str(Celsius)+ " Celsius or " + ('%0.1f degrees Celsius ' %(Celsius)) + 'to one decimal place '
elif corf == 2 :
return num
Fahrenheit = (num * 9.0/5.0) + 32
print str(num) + " Celsius is equal to " + str(Fahrenheit)+ " Fahrenheit or " + ('%0.1f degrees Celsius ' %(Celsius)) + 'to one decimal place '
else:
return 'Error'
什麼不起作用? – Andrey