原文链接: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、浮点数不能进行按位或运算
扩展内容:
如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。