2.1摄氏温度转为华氏温度.py
Posted WY_记录
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.1摄氏温度转为华氏温度.py相关的知识,希望对你有一定的参考价值。
# -*- coding: utf-8 -*- """ Created on Sun Apr 22 14:57:48 2018 @author: MyPC """ def main(): ‘‘‘ 摄氏温度转为华氏温度. 公式:fathrenheiit=(9 / 5) * celsius + 32 input:celsius output:fathrenheiit ‘‘‘ celsius = eval(input("input Celsius:")) fahrenheit=(9 / 5) * celsius + 32 print("%4.2f Celsius is %5.2f fahrenheit"%(celsius,fahrenheit)) if __name__ == "__main__": main()
以上是关于2.1摄氏温度转为华氏温度.py的主要内容,如果未能解决你的问题,请参考以下文章