条件语句
Posted 世界第一稳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了条件语句相关的知识,希望对你有一定的参考价值。
while True: a = input(‘1:摄氏转华氏\n2:华氏转摄氏\n3:退出\n‘) if a ==‘1‘: celsius = float(input(‘输入摄氏温度: ‘)) fahrenheit = (celsius * 9/5) + 32 print(‘{:.2f}摄氏温度转为华氏温度为{:.2f}\n‘.format(celsius,fahrenheit)) elif a ==‘2‘: fahrenheit = float(input(‘请输入华氏温度:‘)) celsius = 5/9*(fahrenheit-32) print(‘{:.2f}华氏温度转换为摄氏温度为:{:.2f}\n‘.format(fahrenheit,celsius)) else: break
以上是关于条件语句的主要内容,如果未能解决你的问题,请参考以下文章