i want to make the boolean list to negated boolean list for example, below code has same meaning
lst= [True, False]
neg_lst = list(map(lambda x: not x, lst))
I think that there are the simplest way to make boolean list to be negated. like, unary operator. maybe.
always thanks for a lot of your help.