望采纳
可以使用 Python 中的 in 操作符来判断一个字符串是否包含在另一个字符串中。
# 假设 check_list1 是一个 DataFrame
# 创建一个新列 check,初始值全部为 0
check_list1['check'] = 0
# 遍历每一行
for index, row in check_list1.iterrows():
# 如果 group2 列的值在 group_real 列的值中,则将 check 列的值设为 1
if row['Group2'] in row['Group_real']:
check_list1.loc[index, 'check'] = 1
或者这样
# 创建一个新列 check,用于存储判定结果
check_list1['check'] = 0
# 遍历每一行
for index, row in check_list1.iterrows():
# 判断 group2 列的值是否在 group_real 列的值中
if row['Group2'] in row['Group_real']:
check_list1.loc[index, 'check'] = 1
else:
check_list1.loc[index, 'check'] = 0