data = pd.read_excel('E:\workup.xlsx')#打开表格
FF = data.loc[(data['OBJECTID'] == 0)]#搜索OBJECTID中等于0的值print(FF)
FF.to_excel('o.xlsx')