如果我做:
result = reduce(operator.and_, [False] * 1000)
第一次结果后它会停止吗?(自False & anything == False)
False & anything == False
同理:
result = reduce(operator.or_, [True] * 1000)
python
python ×1