美文网首页
温度转换

温度转换

作者: foreversunda | 来源:发表于2018-11-17 21:31 被阅读0次

    #tempconvert.py

    tempstr = input("请输入带有符号的温度值:")

    if tempstr[-1] in ['F','f']:

        c =(eval(tempstr[0:-1])-32)/1.8

        print("转换后的温度是{:.2f}c".format(c))

    elif tempstr[-1] in ['C','c']:

        F =1.8*eval(tempstr[0:-1])+32

        print("转换后的温度是{:.2f}F".format(F))

    else:

        print("输入格式错误")

    相关文章

      网友评论

          本文标题:温度转换

          本文链接:https://www.haomeiwen.com/subject/ayiifqtx.html