标签:.com 退出 alt ima col input inpu 输入 color
while True: a = input(‘1:摄氏温度转为华氏温度请按\n2:华氏温度转为摄氏温度请按\n3:退出\n‘) if a ==‘1‘: c = float(input(‘请输入华氏温度:‘)) f = c*9/5+32 print(‘{:.2f}摄氏温度转为华氏温度为:{:.2f}\n‘.format(c,f)) elif a==‘2‘: f = float(input(‘请输入摄氏温度:‘)) c = 5/9*(f-32) print(‘{:.2f}华氏温度转为摄氏温度为:{:.2f}\n‘.format(f,c))
标签:.com 退出 alt ima col input inpu 输入 color
原文地址:https://www.cnblogs.com/CandiceZheng/p/8973501.html