标签:bsp put inpu info pre jpg 输入 转换 条件语句
a=input(‘1.摄氏转华氏 2.华氏转摄氏‘) if a ==‘1‘: f=float(input(‘请输入华氏温度‘)) c=5/9*(f-32) print(‘{}华氏度转为摄氏度是{}‘.format(f,c)) else: c=input(‘请输入摄氏温度‘) f=float(c)*9/5+32 print(‘{}摄氏温度转为华氏温度是{}‘.format(c,f)) while True: a=int(input(‘摄氏转华氏请按1\n华氏转摄氏请按2\n推出请按3\n‘)) if a==1: c=input(‘请输入摄氏温度‘) f=float(c)*9/5+32 print(‘{}摄氏温度转为华氏温度是{}‘.format(c,f)) elif a ==2: f=float(input(‘请输入华氏温度‘)) c=5/9*(f-32) print(‘{}华氏度转为摄氏度是{}‘.format(f,c)) else: break
标签:bsp put inpu info pre jpg 输入 转换 条件语句
原文地址:https://www.cnblogs.com/mintine/p/8947349.html