Python数据分析Numpy常用函数常用函数条件赋值 有点像三目运算条件成立是1 不成立是0 signal = np.where( (data['weekday'] == 0) | (data['weekday'] == 4),1,0)