#输入摄氏温度temperature1 = float(input('请输入摄氏温度:'))#将摄氏温度转换为华氏温度temperature2 =temperature1*9/5+32#输出结果print('\n摄氏温度的{}是华氏温度的{}。\n\n'.format(temperature1,temperature2))
本文共 214 字,大约阅读时间需要 1 分钟。
#输入摄氏温度temperature1 = float(input('请输入摄氏温度:'))#将摄氏温度转换为华氏温度temperature2 =temperature1*9/5+32#输出结果print('\n摄氏温度的{}是华氏温度的{}。\n\n'.format(temperature1,temperature2))
转载于:https://www.cnblogs.com/844115-l/p/9597412.html