python的dataframe取某一列中hello/apt 中的hello的代码
时间: 2024-05-02 11:19:05 浏览: 45
可以使用以下代码:
```python
import pandas as pd
df = pd.DataFrame({'column_name': ['hello', 'world', 'apt']})
result = df[df['column_name'].str.contains('hello')]
```
以上代码会将包含"hello"的行筛选出来,并存在变量result中。
阅读全文