0

我的任务是制作一个接受用户输入(温度)的程序,如果温度是摄氏温度,则转换为华氏温度,反之亦然。

问题是,当您键入类似 35:C 的内容时,即使 myscale 是 C 我的代码,程序也会使用 if myscale == "F" 而不是 elif myscale == "C":

mytemp = 0.0
while mytemp != "quit":
    info = raw_input("Please enter a temperature and a scale. For example - 75:F " \
                       "for 75 degrees farenheit or 63:C for 63 degrees celcius "\
                       "celcious. ").split(":")
    mytemp = info[0]
    myscale = str(info[1])

    if mytemp == "quit":
        "You have entered quit: "
    else:
        mytemp = float(mytemp)
        scale = myscale
        if myscale == "f" or "F":
            newtemp = round((5.0/9.0*(mytemp-32)),3)
            print "\n",mytemp,"degrees in farenheit is equal to",newtemp,"degrees in 
            celcius. \n" 
        elif: myscale == "c" or "C":
            newtemp = 9.0/5.0*mytemp+32
            print "\n",mytemp,"degrees in celcius is equal to",newtemp,"degrees in 
            farenheit. \n"
        else:
            print "There seems to have been an error; remember to place a colon (:) 
                  between "\
                  "The degrees and the letter representing the scale enter code here. "
raw_input("Press enter to exit")
4

2 回答 2

2

以下:

    if myscale == "f" or "F":

应该读:

    if myscale == "f" or myscale == "F":

或者

    if myscale in ("f", "F"):

或(如果您的 Python 足够新以支持集合文字):

    if myscale in {"f", "F"}:

这同样适用于

    elif: myscale == "c" or "C":

此外,. 后面还有一个多余的冒号elif

您现在拥有的在语法上是有效的,但与预期的不同。

于 2013-03-11T21:22:08.800 回答
0

这是你的问题:

elif: myscale == "c" or "C":

注意:后面的elif

您还应该in按照其他答案的说明使用。

于 2013-03-11T21:23:59.870 回答