Python 判断数组中是否全为某值

使用内置的all函数,函数定义形式:

def all(__iterable: Iterable[object]) -> bool

使用示例:

array = [None, None, None, None]
if all(data is None for data in array):
    print('All None')

你可能感兴趣的:(Python,python)