我想創建一個新列,如果以下條件為真,則返回值 1,如果為假,則返回值 2,并且不確定為什么以下條件不起作用?t1 = x['timestamp_1'] < x['timestamp_2']x['new'] = np.select([t1], [1], default=2) 查看完整描述