我没有得到正确的公斤值

我刚刚制作了一个简单的重量转换器,可以从用户那里获取输入并将其转换为公斤或磅。我没有收到任何错误,但我运行的代码只是说以磅为单位的值而不是以千克为单位的值...请帮帮我...提前致谢

http://img4.mukewang.com/6412c4f40001cb8f13640765.jpg


缥缈止盈
浏览 62回答 1
1回答

慕森卡

weight=int(input("Ceki gir : "))kg=weight*2.20lbs=weight/2.20type1=input("K for kG P for p ")    if type1=="P" or type1=="p":    print("Your weight is: ",lbs)elif type1=="K" or type1=="k":    print("Your weight is: ",kg)else:    print("Wrong")```I wrote like this and i think it is worked u can try and tell me if it is worked or not
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python