标签: python pandas
我需要做这样的事情:
根据df列中另一个列的存在,在df中创建新的列“状态”
question_df['status']= question['Id'].apply(lambda x : "Exists" if x in answers.Id.to_list() else "Not Exists")
这需要很多时间。任何其他解决方案都值得赞赏