编写解决方案找出既是低脂又是可回收的产品编号。 返回结果 无顺序要求 。 返回结果格式如下例所示: import pandas as pd def find_products(products: pd.DataFrame) -> pd.DataFrame: re = products.loc[(products['low_fats']=='Y') & (products['recyclable']=='Y'),["product_id"]] return re