理解数据类型与数学运算:求和、温度转换2时间:2021-10-31 01:26:12 c= input('请输入摄氏温度') f= float(c)*9/5+32 print('{}摄氏温度转为华氏温度{}'.format(f,c))