试题详情

若b=np.array([True,False,False]),下列能输出[FalseTrueTrue]的有()。

Aprint(
B-1)

Bprint(~b)

Cprint(np.logical_not(
B))

Dprint(>>b)