num1=input('输入第一个数字:')
num2=input('输入第二个数字:')
sum=float(num1)+float(num2)
print('数字{0}和{1}相加结果为:{2}'.format(num1,num2,sum))
celsius=float(input('输入摄氏温度:'))
fahrenheit=(celsius*1.8)+32#f=c*9/5+32
print('{:.2f}摄氏温度转换为华氏温度为{:.2f}'.format(celsius,fahrenheit))
![]()
celsius=float(input('请输入摄氏温度:'))
fahrenheit=(celsius*9/5)+32#f=c*9/5+32
print('{:.2f}摄氏温度转为华氏温度为{:.2f}'.format(celsius,fahrenheit))
f=float(input('请输入华氏摄氏度:'))
c=5/9*(f-32)
print('{:.2f}华氏温度转换为摄氏温度为:{:.2f}'.format(f,c))
![]()
#摄氏℃=5/9(°F-32)
#1.输入
f=float(input('请输入华氏温度:'))
#2.计算
c=5/9*(f-32)
#3.输出
print('{:.2f}华氏温度转换为摄氏温度为:{:.2f}'.format(f,c))
![]()