运行 ❯
获取您
自己的 Python
服务器
×
更改方向
更改主题,深/浅
转到空间
print(4 or 5 + 10 or 8) """ The or operator has a lower precedence than addition, and we need to calculate the addition first. The calculation above reads: 4 or 15 or 8 = 4 """
4