标签: python python-3.x pandas dataframe
我的数据框的格式为:
ID Address1 Address2 Address3 0 a b c 1 NaN d e 2 f NaN g 2 NaN h Nan
我如何选择所有(至少其中之一)具有“地址1”列或“地址3”中的值的行?
在此特定示例中,它将选择行0,1和2,而不是3,因为Address1和Address3均为Nan。
谢谢!