当我使用该函数时,我的 python 脚本中遇到了一个非常奇怪的问题all()
。
控制台给了我false
(这显然是正确的)这条线:
all(x == 2 for x in (8,2,2,2))
在我的脚本中,同一行返回true
?!
这里发生了什么?是否有其他all()
功能可以在我的脚本中覆盖它?我正在导入以下模块:
import os
import sys
import string
import time
from time import gmtime, strftime
from optparse import OptionParser, OptionGroup
import cx_Oracle
from pylab import *
import ROOT
from array import array
import logging
from traceback import format_exc