崇高没有显示用户输入类型代码的正确输出

时间:2018-10-27 11:58:49

标签: windows-7 32-bit python-3.x

这是我的程序,可在pycharm和python 3.6.5上运行

def main():
    celsius=eval(input("what is the temperatrue in celsius?"))
    fahrenheit= 9/5 * celsius + 32
    print("the temperatrue is", fahrenheit, "degree fahrenheit.")

main()

输出

  

摄氏温度是多少?33
###在这里取输入并给出另一个输出###
  的温度是华氏91.4度。


现在这是我在sublime text3上运行的同一程序

def main():
    celsius=eval(input("what is the temperatrue in celsius?"))
    fahrenheit= 9/5 * celsius + 32
    print("the temperatrue is", fahrenheit, "degree fahrenheit.")

main()

输出

  

摄氏温度是多少?33
###输入为33 ###后没有输出

0 个答案:

没有答案