Python错误集锦:浮点数进行或运算提示:TypeError: unsupported operand type(s) for |: ‘float’ and ‘float’

原文链接:http://www.juzicode.com/archives/5921

错误提示:

 浮点数进行或运算提示:TypeError: unsupported operand type(s) for |: ‘float’ and ‘float’

#vx:桔子code / juzicode.com
a = 1.27
b = 3.14
c = a | b
print(c)
==========运行结果:
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
*LT;ipython-input-1-e26e13cf5202> in *LT;module>
      2 a = 1.27
      3 b = 3.14
----> 4 c = a | b
      5 print(c)

TypeError: unsupported operand type(s) for |: 'float' and 'float'

 

错误原因:

1、浮点数不能进行按位或运算

 

 

扩展内容:

  1.  Python基础教程2–数据类型-numbers

 


 

如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注