这是我的程序,可在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 ###后没有输出