>>> x = [True, True, True, True]
>>> [not y for y in x]
[False, False, False, False]
>>> x = [False, True, True, False]
>>> [not y for y in x]
[True, False, False, True]
>>>
我很确定我的第一个解决方案是你想要的。但是,如果你想改变原始数组,你可以这样做:
>>> x = [True, True, True, True]
>>> x[:] = [not y for y in x]
>>> x
[False, False, False, False]
>>>
4条答案
按热度按时间tyg4sfes1#
使用
not
仍然是最好的方法。你只需要一个列表解析就可以了:我很确定我的第一个解决方案是你想要的。但是,如果你想改变原始数组,你可以这样做:
x3naxklr2#
在纯python中,使用列表解析
或者,您可以考虑使用numpy数组来实现此功能:
50pmv0ei3#
@iCodez的列表理解的答案更pythonic。我再加上一种方法:
xggvc2p64#
对于具有多于1个轴的布尔数组,由于二义性,这将导致ValueError。
2023,Python版本3.7.4,numpy版本1.21.6