标签:int put code print class form 转化 转换 div
> a=input(‘摄氏度转换为华氏温度请按1/n华氏温度转化为摄氏度请按2/n‘) 摄氏度转换为华氏温度请按1/n华氏温度转化为摄氏度请按2/n1/n >>> celsius=float(input(‘请输入摄氏温度‘)) 请输入摄氏温度89 fahrenheit=(celsius*9/5)+32 >>> print(‘{:.2f}摄氏温度转换为华氏温度{:.2f}‘.format(celsius, fahrenheit)) print(‘{:.2f}摄氏温度转换为华氏温度{:.2f}‘.format(celsius, fahrenheit)) {:.2f}摄氏温度转换为华氏温度89.00
标签:int put code print class form 转化 转换 div
原文地址:https://www.cnblogs.com/ffffang/p/8920305.html