温度转换
Posted hshirely
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了温度转换相关的知识,希望对你有一定的参考价值。
a=int(input (‘摄氏度转换为华氏度请按 1\\n华氏度转换为摄氏度请按 2\\n‘)) if a==1: c = float(input(‘请输入摄氏温度:‘)) f = c*9/5+32 print(‘{:.2f}°C转换成华氏温度为{:.2f}°F‘.format(c,f)) else: f = float(input(‘请输入华氏温度:‘)) c = 5/9*(f-32) print(‘{:.2f}°F转换为摄氏温度为{:.2f}°C‘.format(f,c))
以上是关于温度转换的主要内容,如果未能解决你的问题,请参考以下文章