input_info input( 请输入转换方式: )
if input_info 华氏 :
huashi_temp float(input( 请输入转换方式: ))
temp1 (huashi_temp-32)/1.8
print( 摄氏温度: str(temp1))
elif input_info 摄氏 :
sheshi_temp float(input( 请输入摄氏温度; ))
temp1 sheshi_temp*1.8 32
print( 华氏温度; str(temp))
else:
print( 输入错误 )



