简单的Python温度转换器

时间:2015-09-24 23:32:24

标签: python python-2.x string-parsing temperature

我对编程很新,并决定从Python入手。无论如何,我似乎无法弄清楚为什么我写的这个温度转换脚本没有运行。

def convert_to_fahrenheit(celsius):

    c = celsius
    f = c * 9 / 5 + 32
    print '%r Celsius, converted to Fahrenheit, is: %r Fahrenheit.' % c, f


def convert_to_celsius(fahrenheit):

    f = fahrenheit
    c = (f - 32) * 5 / 9
    print '%r Fahrenheit, converted to Celsius, is: %r Celsius.' % f, c


def convert():

    print 'To convert a temperature from Celsius to Fahrenheit:'
    cels = raw_input('CELSIUS: ')
    print ''
    convert_to_fahrenheit(cels)

    print ''
    print 'To convert a temperature from Fahrenheit to Celsius:'
    fahr = raw_input('FAHRENHEIT: ')
    convert_to_celsius(fahr)


convert()

它返回一个TypeError:

Traceback (most recent call last):
  File "C:/Users/Brandon/PycharmProjects/IntroTo/Ch1/Exercises.py", line 32,     in <module>
    convert()
  File "C:/Users/Brandon/PycharmProjects/IntroTo/Ch1/Exercises.py", line 24,     in convert
    convert_to_fahrenheit(cels)
  File "C:/Users/Brandon/PycharmProjects/IntroTo/Ch1/Exercises.py", line 8,      in convert_to_fahrenheit
    f = c * 9 / 5 + 32
TypeError: unsupported operand type(s) for /: 'str' and 'int'

1 个答案:

答案 0 :(得分:1)

一个问题是你传递并字符串到前两个函数,但期望它是一个浮点数。您可以通过将从string获得的值转换为float来解决它。你应该这样做

c = float(celcius)

在第一个函数中,

f = float(farenheit)

在第二个。

另一个问题是,您需要在(c, f)(f, c)附近设置括号才能使%正常工作。

你可能想要做的另一件事是询问用户是否想要将cel转换为远程或其他方式。您可以使用if

执行此操作
def convert():

    user_input = raw_input('From what do you want to convert?: ')

    if user_input == 'celsius':
        print 'To convert a temperature from Celsius to Fahrenheit:'
        cels = raw_input('CELSIUS: ')
        convert_to_fahrenheit(cels)

    elif user_input == 'farenheit':
        print 'To convert a temperature from Fahrenheit to Celsius:'
        fahr = raw_input('FAHRENHEIT: ')
        convert_to_celsius(fahr)