如何用python编写函数把摄氏温度转化为华氏温度-学习笔记1时间:2022-12-26 16:33:49用python编写函数把摄氏温度转化为华氏温度 小代码: def fc(x): f=x*9/5+32 return(str(f)+'华氏温度')f=fc(35)print(f)