标签:com 图片 div \n span png bubuko 分享图片 .com
while True: a = int(input(‘ 摄氏度转华氏度请按 1\n 华氏度转摄氏度请按 2\n 退出请按 3\n‘)) if a == 1: c=float(input(‘请输入摄氏温度:‘)) f=c*9/5+32 input(‘{:.2f}°C转换成华氏度为{:.2f}°F‘.format(c,f)) elif a==2: f=float(input(‘请输入华氏温度:‘)) c=5/9*(f-32) print(‘{:.2f}°F转换成摄氏度为{:.2f}°C‘.format(f,c)) else: break
标签:com 图片 div \n span png bubuko 分享图片 .com
原文地址:https://www.cnblogs.com/whyyxxx/p/8947141.html