标签:技术 div style src 图片 input bubuko orm print
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))
标签:技术 div style src 图片 input bubuko orm print
原文地址:https://www.cnblogs.com/hshirely/p/8947180.html