gpt4 book ai didi

python - 是否有 pandas 函数来评估子字符串是否在给定字符串中?

转载 作者:行者123 更新时间:2023-12-01 08:22:57 24 4
gpt4 key购买 nike

我正在过滤 Pandas Serie,以查找行是否是给定字符串的子字符串。我尝试了这些说明,但未能成功:

sting_to_test = "My String"
filtered_data = my_serie[my_serie in sting_to_test]

我还测试了 isin() 函数,但似乎不能在单次刺痛中使用它。

sting_to_test = "My String"
filtered_data = my_serie.isin(sting_to_test)

是否有任何解决方案,无需使用循环迭代整个系列?

最佳答案

您可以尝试使用 applylambda,如下所示:

my_series = pd.Series(['AB', 'CD', 'BA'])
test_str = 'ABC'
print(my_series.apply(lambda row: row in test_str))

关于python - 是否有 pandas 函数来评估子字符串是否在给定字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54504619/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com