美文网首页
温度转换

温度转换

作者: 妞給爺笑一個_dcac | 来源:发表于2019-08-12 01:40 被阅读0次

    tempstr=input("请输入您要转换的温度:")

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

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

        print("您要转换的温度为{:-1}c".format(c))

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

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

        print("您要转换的温度为{:-1}f".format(f))

    else:

        print("输入的格式有误")

    相关文章

      网友评论

          本文标题:温度转换

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