摘要: C = float(input("Enter a degree in Celsius:"))F = (9/5) * C + 32print("{0} Celsius is {1} Fahrenheit".format(C,F)) Enter a degree in Celsius:43 43.0 C 阅读全文
posted @ 2019-07-30 21:44 DevonL 阅读(226) 评论(2) 推荐(1) 编辑