a=input(‘摄氏转华氏按1\n 华氏转摄氏按2\n‘) if a ==‘1‘: c = input(‘请输入摄氏度‘) f =float(c)*9/5+32 print(‘{}摄氏温度转化为华氏温度{}‘.format(c,f)) else: f=float(input(‘请输入华氏温度: ‘)) c=5/9*(f-32) print(‘{:2f}摄氏温度转为华氏温度是{:.2f}‘.format(f,c))
原文:https://www.cnblogs.com/guangzhoushangxueyuan121/p/8947124.html