标签: python
我需要迭代Dataframe中的每一行并使用正则表达式检查是否有任何行包含“CHG00”模式。
答案 0 :(得分:0)
正则表达式方法
df['new_col'] = df['col1'].str.contains('CHG00')
Pandas Method
True
输出将是一系列布尔值,{ "a" : "some_str", "b" : "some_str", "c" : "some_str" } 是包含模式
{ "a" : "some_str", "b" : "some_str", "c" : "some_str" }