gpt4 book ai didi

python - 关于我制作的小型转换器的IF语句问题

转载 作者:行者123 更新时间:2023-12-04 00:57:17 25 4
gpt4 key购买 nike

我正在制作一个程序,将您的体重从公斤转换为磅,反之亦然。它会提示您输入重量,询问重量是千克还是磅,然后得出结果。

代码如下:

weight = int(input("What is your weight? "))
unit = input ("(L)bs or (K)g? ")
unit = unit.upper
if unit == "L":
converted = (weight * 0.45)
print(converted)

else:
converted = (weight // 0.45)
print(converted)


如果我以公斤为单位表示转换器,转换器可以正常工作,但是当我以磅为单位表示磅单位时,它会以公斤为单位并以磅为单位给出答案。谁能告诉我问题是什么?

最佳答案

您应该在unit.upper的末尾添加“()”。

如果没有'()',则不会调用upper方法,而只会引用它。 unit.upper将返回('str对象的内置方法上限为0x00630240'),因此,当您设置unit = unit.upper时,实际上是将unit ='str对象的内置方法上限设为0x00630240' ,它激活了else语句。

weight = int(input("What is your weight? "))
unit = input ("(L)bs or (K)g? ")
unit = unit.upper()
if unit == "L":
converted = (weight * 0.45)
print(converted)

else:
converted = (weight // 0.45)
print(converted)

关于python - 关于我制作的小型转换器的IF语句问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61860901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com