Python(3.9.5)和Pandas中的一个问题:
假设我有一个字符串数组x
,我想提取包含某个子字符串的所有元素,例如feb05
,有没有一种Python方法可以在一行中完成,包括使用Pandas函数?
举例说明我的意思:
x = ["2023_jan05", "2023_jan_27", "2023_feb04", "2023_feb05", "2024_feb05"]
must_contain = "feb05"
desired_output = ["2023_feb05", "2024_feb05"]
我可以运行一个循环,
import numpy as np
import pandas as pd
desired_output = []
indices_bool = np.zeros(len(x))
for idx, test in enumerate(x):
if must_contain in test:
desired_output.append(test)
indices_bool[idx] = 1
但我想用一种更像Python的方式来做。
在我的应用程序中,x
是Pandas Dataframe 中的一列,因此也欢迎使用Pandas函数的答案,目的是过滤所有在x
字段中包含must_contain
的行(例如x = df["names"]
)。
2条答案
按热度按时间yh2wf1be1#
既然你和Pandas在一起,你可以使用
str.contains
来得到布尔条件:按条件筛选:
lyfkaqu12#
没有Pandas
Pandas