标签: python numpy
基本上,我想生成具有给定长度的布尔数组,但是内容是随机给定的。
答案 0 :(得分:0)
您可能会找到答案here。 试试
np.random.choice(a=[False, True], size=(N,))