作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个程序,将您的体重从公斤转换为磅,反之亦然。它会提示您输入重量,询问重量是千克还是磅,然后得出结果。
代码如下:
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/
我是一名优秀的程序员,十分优秀!