TypeError: unsupported operand type(s) for &: ‘float‘ and ‘float‘解决方案

今天在写Python代码的时候遇到了这么一个小问题,在网上查了也没有一个明确的解答,通过自己的摸索,终于找到问题的所在,真的是一个小问题就能难到很多人,希望能对你们有所帮助。主要还是运算符理解的不够透彻,对于那些学习了很多种编程语言的我们,很容易混淆。

Python位运算符

TypeError: unsupported operand type(s) for &: ‘float‘ and ‘float‘解决方案_第1张图片

Python逻辑运算符

TypeError: unsupported operand type(s) for &: ‘float‘ and ‘float‘解决方案_第2张图片

首先看编码:

TypeError: unsupported operand type(s) for &: ‘float‘ and ‘float‘解决方案_第3张图片

如果我没记错在java中可以使用&&进行逻辑判断,但是在Python中不能这样判断,会出现TypeError: unsupported operand type(s) for &: 'float' and 'float'。

这是因为在Python中位运算符和逻辑运算符是两个概念。所以在进行逻辑比较的时候只能使用逻辑运算符。

修改后的代码:

TypeError: unsupported operand type(s) for &: ‘float‘ and ‘float‘解决方案_第4张图片

你可能感兴趣的:(python)